diff -r ba58c5a61503 -r 43b5fe18ea6c mercurial/localrepo.py --- a/mercurial/localrepo.py Tue Mar 29 16:25:48 2011 +0200 +++ b/mercurial/localrepo.py Mon Mar 28 15:54:22 2011 +0200 @@ -47,7 +47,7 @@ if create: if not os.path.exists(path): util.makedirs(path) - os.mkdir(self.path) + util.makedir(self.path, notindexed=True) requirements = ["revlogv1"] if self.ui.configbool('format', 'usestore', True): os.mkdir(os.path.join(self.path, "store"))