Submitter | phabricator |
---|---|
Date | July 22, 2020, 5:24 a.m. |
Message ID | <differential-rev-PHID-DREV-nmts4gejepajl7ujmvwo-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/46829/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/templater.py b/mercurial/templater.py --- a/mercurial/templater.py +++ b/mercurial/templater.py @@ -1047,12 +1047,8 @@ def templatepaths(): '''return locations used for template files.''' - pathsrel = [b'templates'] - paths = [ - os.path.normpath(os.path.join(resourceutil.datapath, f)) - for f in pathsrel - ] - return [p for p in paths if os.path.isdir(p)] + path = os.path.normpath(os.path.join(resourceutil.datapath, b'templates')) + return [path] if os.path.isdir(path) else [] def templatepath(name):