Mercurial > public > mercurial-scm > hg
comparison 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 |
comparison
equal
deleted
inserted
replaced
7280:810ca383da9c | 7281:f96c20e9b56a |
---|---|
7 | 7 |
8 import cStringIO, zlib, tempfile, errno, os, sys | 8 import cStringIO, zlib, tempfile, errno, os, sys |
9 from mercurial import util, streamclone | 9 from mercurial import util, streamclone |
10 from mercurial.node import bin, hex | 10 from mercurial.node import bin, hex |
11 from mercurial import changegroup as changegroupmod | 11 from mercurial import changegroup as changegroupmod |
12 from common import HTTP_OK, HTTP_NOT_FOUND, HTTP_SERVER_ERROR | 12 from common import ErrorResponse, HTTP_OK, HTTP_NOT_FOUND, HTTP_SERVER_ERROR |
13 | 13 |
14 # __all__ is populated with the allowed commands. Be sure to add to it if | 14 # __all__ is populated with the allowed commands. Be sure to add to it if |
15 # you're adding a new command, or the new command won't work. | 15 # you're adding a new command, or the new command won't work. |
16 | 16 |
17 __all__ = [ | 17 __all__ = [ |