diff mercurial/hgweb/protocol.py @ 7281:f96c20e9b56a

fix missing import, spotted by pychecker
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Tue, 28 Oct 2008 20:14:45 +0100
parents a42d27bc809d
children 496ae1ea4698
line wrap: on
line diff
--- a/mercurial/hgweb/protocol.py	Tue Oct 28 19:25:26 2008 +0100
+++ b/mercurial/hgweb/protocol.py	Tue Oct 28 20:14:45 2008 +0100
@@ -9,7 +9,7 @@
 from mercurial import util, streamclone
 from mercurial.node import bin, hex
 from mercurial import changegroup as changegroupmod
-from common import HTTP_OK, HTTP_NOT_FOUND, HTTP_SERVER_ERROR
+from common import ErrorResponse, HTTP_OK, HTTP_NOT_FOUND, HTTP_SERVER_ERROR
 
 # __all__ is populated with the allowed commands. Be sure to add to it if
 # you're adding a new command, or the new command won't work.