changeset 4348:b633f470944e

hgweb: fix rfind bug in PATH_INFO handling
author Matt Mackall <mpm@selenic.com>
date Mon, 16 Apr 2007 09:51:50 -0500
parents 9bfe93edfbb0
children 69109aa0cddd 3380eb6d7c32 8aee687f0214
files mercurial/hgweb/hgweb_mod.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/hgweb/hgweb_mod.py
+++ b/mercurial/hgweb/hgweb_mod.py
@@ -716,7 +716,7 @@ class hgweb(object):
                     # 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