Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/localrepo.py @ 2578:cf4f0322851d
coding style: use spaces instead of tabs
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sat, 08 Jul 2006 16:55:49 +0200 |
parents | 2748253b49c2 |
children | 54b152379589 |
comparison
equal
deleted
inserted
replaced
2577:fa76c5d609c9 | 2578:cf4f0322851d |
---|---|
72 self.encodepats = None | 72 self.encodepats = None |
73 self.decodepats = None | 73 self.decodepats = None |
74 self.transhandle = None | 74 self.transhandle = None |
75 | 75 |
76 if create: | 76 if create: |
77 if not os.path.exists(path): | 77 if not os.path.exists(path): |
78 os.mkdir(path) | 78 os.mkdir(path) |
79 os.mkdir(self.path) | 79 os.mkdir(self.path) |
80 os.mkdir(self.join("data")) | 80 os.mkdir(self.join("data")) |
81 | 81 |
82 self.dirstate = dirstate.dirstate(self.opener, self.ui, self.root) | 82 self.dirstate = dirstate.dirstate(self.opener, self.ui, self.root) |
83 | 83 |