mercurial/hgweb/webutil.py
changeset 36714 250f3168d907
parent 36711 a2fa51415ddc
child 36863 1a1972b1a1ff
--- 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 == "/":