Mercurial > hg > TagInTheMiddle
diff taginthemiddle/handlers.py @ 11:fc55d95be553
it is list.index, not list.find, silly!
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 05 May 2010 22:37:42 -0700 |
parents | 1182315b18ac |
children | 1ae2f98f9675 |
line wrap: on
line diff
--- a/taginthemiddle/handlers.py Wed May 05 22:35:09 2010 -0700 +++ b/taginthemiddle/handlers.py Wed May 05 22:37:42 2010 -0700 @@ -93,7 +93,7 @@ GenshiHandler.__init__(self, app, request) path = request.path_info.split('/') try: - index = path.find(app.tags_url) + index = path.index(app.tags_url) except ValueError: raise HandlerMatchException self.tags = path[index+1:]