diff mercurial/hgweb/protocol.py @ 11618:83070a9cd526

protocol: command must be checked before passing in
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Fri, 16 Jul 2010 19:01:34 +0200
parents 368cd5325348
children e46a8b2331a6
line wrap: on
line diff
--- a/mercurial/hgweb/protocol.py	Tue Jul 20 10:05:30 2010 +0200
+++ b/mercurial/hgweb/protocol.py	Fri Jul 16 19:01:34 2010 +0200
@@ -67,5 +67,5 @@
 
 def call(repo, req, cmd):
     p = webproto(req)
-    r = wireproto.dispatch(repo, p, cmd)
+    wireproto.dispatch(repo, p, cmd)
     yield p.response