mercurial/hgweb/request.py
changeset 4633 ff7253a0d1da
parent 4250 ca639faa38a2
child 5561 22713dce19f6
--- a/mercurial/hgweb/request.py	Mon Jun 18 21:30:27 2007 -0500
+++ b/mercurial/hgweb/request.py	Tue Jun 19 08:06:37 2007 +0200
@@ -20,7 +20,7 @@
     def __init__(self, destination, wsgienv, start_response):
         version = wsgienv['wsgi.version']
         if (version < (1, 0)) or (version >= (2, 0)):
-            raise RuntimeError("Unknown and unsupported WSGI version %d.%d" \
+            raise RuntimeError("Unknown and unsupported WSGI version %d.%d"
                                % version)
         self.inp = wsgienv['wsgi.input']
         self.server_write = None