changeset 986 | 2810c625ca98 |
parent 984 | edc368e0b9aa |
child 987 | bfe12654764d |
--- a/mercurial/hgweb.py Sun Aug 21 13:18:45 2005 -0700 +++ b/mercurial/hgweb.py Sun Aug 21 15:00:02 2005 -0700 @@ -626,8 +626,11 @@ t = self.templates or self.repo.ui.config("web", "templates", templatepath()) m = os.path.join(t, "map") + style = self.repo.ui.config("web", "style", "") if args.has_key('style'): - b = os.path.basename("map-" + args['style'][0]) + style = args['style'][0] + if style: + b = os.path.basename("map-" + style) p = os.path.join(t, b) if os.path.isfile(p): m = p