Mercurial > hg-stable
changeset 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 | 810ca383da9c |
children | 6541696b5f66 |
files | mercurial/hgweb/protocol.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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.