summaryrefslogtreecommitdiff
path: root/sys/src/cmd/hg/mercurial
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-03-13 18:30:59 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2015-03-13 18:30:59 +0100
commite74d851d692e7249dd5ee2f0e4bb7ba3ed9844e4 (patch)
tree3789ac90a352c08e1663e422282ec2403e17c7b3 /sys/src/cmd/hg/mercurial
parente437b1b289354c9d390b400f1c9c215857848126 (diff)
hg: install hgweb templates
Diffstat (limited to 'sys/src/cmd/hg/mercurial')
-rw-r--r--sys/src/cmd/hg/mercurial/localrepo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/hg/mercurial/localrepo.py b/sys/src/cmd/hg/mercurial/localrepo.py
index 85ec689f6..f6000b502 100644
--- a/sys/src/cmd/hg/mercurial/localrepo.py
+++ b/sys/src/cmd/hg/mercurial/localrepo.py
@@ -41,7 +41,7 @@ class localrepository(repo.repository):
if not os.path.isdir(self.path):
if create:
if not os.path.exists(path):
- os.mkdir(path)
+ os.makedirs(path)
os.mkdir(self.path)
requirements = ["revlogv1"]
if self.ui.configbool('format', 'usestore', True):