# HG changeset patch # User Dirkjan Ochtman # Date 1240842391 -7200 # Node ID 02145b700fe4f1b327c2463bf77961454c999270 # Parent d30a21594812dcc3140d6fcda1a96af49abee29a templater: fix little problem from stylemap() changes diff -r d30a21594812 -r 02145b700fe4 mercurial/templater.py --- a/mercurial/templater.py Mon Apr 27 12:37:19 2009 +0200 +++ b/mercurial/templater.py Mon Apr 27 16:26:31 2009 +0200 @@ -196,7 +196,7 @@ if paths is None: paths = templatepath() elif isinstance(paths, str): - paths = [templatepath] + paths = [paths] locations = style and [os.path.join(style, "map"), "map-" + style] or [] locations.append("map")