Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 11644:c4f6f0a1bd5a
merge with stable
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Thu, 22 Jul 2010 15:14:22 +0900 |
parents | 2eab5025f804 c3e8ab80ee90 |
children | 801533a52799 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Tue Jul 20 14:42:05 2010 +0900 +++ b/mercurial/localrepo.py Thu Jul 22 15:14:22 2010 +0900 @@ -42,7 +42,7 @@ if not os.path.isdir(self.path): if create: if not os.path.exists(path): - os.mkdir(path) + util.makedirs(path) os.mkdir(self.path) requirements = ["revlogv1"] if self.ui.configbool('format', 'usestore', True):