# HG changeset patch # User Benoit Boissinot # Date 1225221285 -3600 # Node ID f96c20e9b56a8fe5f2ba62b7eb9fd2946a0631fb # Parent 810ca383da9c3cc24d4bd16037f6e88998483f01 fix missing import, spotted by pychecker diff -r 810ca383da9c -r f96c20e9b56a 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.