Submitter | Mads Kiilerich |
---|---|
Date | Sept. 28, 2014, 3:03 p.m. |
Message ID | <8ab3da1c749ebbb3a1b7.1411916582@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/6008/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/templater.py b/mercurial/templater.py --- a/mercurial/templater.py +++ b/mercurial/templater.py @@ -711,7 +711,7 @@ class templater(object): def templatepaths(): '''return locations used for template files.''' - pathsrel = ['templates', '../templates'] + pathsrel = ['templates'] paths = [os.path.normpath(os.path.join(util.datapath, f)) for f in pathsrel] return [p for p in paths if os.path.isdir(p)]