hgweb: fix rfind bug in PATH_INFO handling
authorMatt Mackall <mpm@selenic.com>
Mon, 16 Apr 2007 09:51:50 -0500
changeset 4348 b633f470944e
parent 4342 9bfe93edfbb0
child 4349 69109aa0cddd
child 4350 8aee687f0214
child 4351 3380eb6d7c32
hgweb: fix rfind bug in PATH_INFO handling
mercurial/hgweb/hgweb_mod.py
--- a/mercurial/hgweb/hgweb_mod.py	Sun Apr 15 18:40:22 2007 -0500
+++ b/mercurial/hgweb/hgweb_mod.py	Mon Apr 16 09:51:50 2007 -0500
@@ -716,7 +716,7 @@
                     # strip leading /
                     pi = pi[1:]
                     if pi:
-                        root = root[:root.rfind(root, pi)]
+                        root = root[:root.rfind(pi)]
                     if req.env.has_key('REPO_NAME'):
                         rn = req.env['REPO_NAME'] + '/'
                         root += rn