mercurial/hgweb/protocol.py
changeset 9198 061eeb602354
parent 8846 b30775386d40
child 9694 8269fe2d48f6
--- a/mercurial/hgweb/protocol.py	Wed Jul 22 23:08:32 2009 +0200
+++ b/mercurial/hgweb/protocol.py	Wed Jul 22 23:12:54 2009 +0200
@@ -26,7 +26,7 @@
     try:
         r = hex(repo.lookup(req.form['key'][0]))
         success = 1
-    except Exception,inst:
+    except Exception, inst:
         r = str(inst)
         success = 0
     resp = "%s %s\n" % (success, r)