mercurial/localrepo.py
changeset 11644 c4f6f0a1bd5a
parent 11603 2eab5025f804
parent 11640 c3e8ab80ee90
child 11648 801533a52799
--- 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):