--- a/mercurial/hgweb/webutil.py Sun Mar 04 13:03:22 2018 -0500
+++ b/mercurial/hgweb/webutil.py Sun Mar 04 13:04:12 2018 -0500
@@ -38,9 +38,9 @@
)
def up(p):
- if p[0] != "/":
+ if p[0:1] != "/":
p = "/" + p
- if p[-1] == "/":
+ if p[-1:] == "/":
p = p[:-1]
up = os.path.dirname(p)
if up == "/":