mercurial/localrepo.py
branchstable
changeset 11640 c3e8ab80ee90
parent 11486 d3c3e2fdeb0c
child 11644 c4f6f0a1bd5a
child 12067 a4fbbe0fbc38
--- a/mercurial/localrepo.py	Wed Jul 21 17:51:37 2010 +0200
+++ b/mercurial/localrepo.py	Wed Jul 21 19:29:57 2010 +0200
@@ -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):