Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/hgweb/webcommands.py @ 7873:4a4c7f6a5912
cleanup: drop unused imports
author | Peter Arrenbrecht <peter.arrenbrecht@gmail.com> |
---|---|
date | Mon, 23 Mar 2009 13:12:07 +0100 |
parents | 06cf09c822c4 |
children | 553aa0cbeab6 |
comparison
equal
deleted
inserted
replaced
7872:f680a1bd679b | 7873:4a4c7f6a5912 |
---|---|
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 os, mimetypes, re, cgi, copy | 8 import os, mimetypes, re, cgi, copy |
9 import webutil | 9 import webutil |
10 from mercurial import error, archival, templatefilters | 10 from mercurial import error, archival, templatefilters |
11 from mercurial.node import short, hex, nullid | 11 from mercurial.node import short, hex |
12 from mercurial.util import binary, datestr | 12 from mercurial.util import binary |
13 from common import paritygen, staticfile, get_contact, ErrorResponse | 13 from common import paritygen, staticfile, get_contact, ErrorResponse |
14 from common import HTTP_OK, HTTP_FORBIDDEN, HTTP_NOT_FOUND | 14 from common import HTTP_OK, HTTP_FORBIDDEN, HTTP_NOT_FOUND |
15 from mercurial import graphmod, util | 15 from mercurial import graphmod, util |
16 | 16 |
17 # __all__ is populated with the allowed commands. Be sure to add to it if | 17 # __all__ is populated with the allowed commands. Be sure to add to it if |