##// END OF EJS Templates
Fix RSS feeds
mpm@selenic.com -
r983:4a988dc8 default
parent child Browse files
Show More
@@ -628,8 +628,9 b' class hgweb:'
628 628 m = os.path.join(t, "map")
629 629 if args.has_key('style'):
630 630 b = os.path.basename("map-" + args['style'][0])
631 p = os.path.join(self.templates, b)
631 p = os.path.join(t, b)
632 632 if os.path.isfile(p): m = p
633 print m
633 634
634 635 port = os.environ["SERVER_PORT"]
635 636 port = port != "80" and (":" + port) or ""
General Comments 0
You need to be logged in to leave comments. Login now