##// END OF EJS Templates
hgweb: don't use os.path.join to build URL parts
Alexis S. L. Carvalho -
r5064:ccdc8db0 default
parent child Browse files
Show More
@@ -488,7 +488,7 b' class hgweb(object):'
488 continue
488 continue
489
489
490 yield {"parity": parity.next(),
490 yield {"parity": parity.next(),
491 "path": os.path.join(abspath, f),
491 "path": "%s%s" % (abspath, f),
492 "basename": f[:-1]}
492 "basename": f[:-1]}
493
493
494 yield self.t("manifest",
494 yield self.t("manifest",
General Comments 0
You need to be logged in to leave comments. Login now