Mercurial > public > mercurial-scm > hg
comparison mercurial/hgweb/protocol.py @ 6212:e75aab656f46
Remove unused imports
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:41 +0100 |
parents | f89fd07fc51d |
children | be76e54570f0 |
comparison
equal
deleted
inserted
replaced
6211:f89fd07fc51d | 6212:e75aab656f46 |
---|---|
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | 3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
4 # | 4 # |
5 # This software may be used and distributed according to the terms | 5 # This software may be used and distributed according to the terms |
6 # of the GNU General Public License, incorporated herein by reference. | 6 # of the GNU General Public License, incorporated herein by reference. |
7 | 7 |
8 import cStringIO, zlib, bz2, 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.i18n import gettext as _ | |
11 from mercurial.node import bin, hex | 10 from mercurial.node import bin, hex |
12 from mercurial import changegroup as changegroupmod | 11 from mercurial import changegroup as changegroupmod |
13 from common import HTTP_OK, HTTP_NOT_FOUND, HTTP_SERVER_ERROR | 12 from common import HTTP_OK, HTTP_NOT_FOUND, HTTP_SERVER_ERROR |
14 | 13 |
15 # __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 |