fix missing import, spotted by pychecker
authorBenoit Boissinot <benoit.boissinot@ens-lyon.org>
Tue, 28 Oct 2008 20:14:45 +0100
changeset 7281 f96c20e9b56a
parent 7280 810ca383da9c
child 7282 6541696b5f66
fix missing import, spotted by pychecker
mercurial/hgweb/protocol.py
--- 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.