mercurial/templater.py
changeset 45198 e2ec36167151
parent 44589 fc1fa3a07af6
child 45199 91aa9bba3dc9
--- a/mercurial/templater.py	Mon Jul 06 22:46:49 2020 +0200
+++ b/mercurial/templater.py	Tue Jul 21 13:05:37 2020 -0700
@@ -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):