Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/hgweb/hgweb_mod.py @ 6211:f89fd07fc51d
Expand import * to allow Pyflakes to find problems
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:26 +0100 |
parents | 3a75fcc96dac |
children | fe8dbbe9520d |
comparison
equal
deleted
inserted
replaced
6210:942287cb1f57 | 6211:f89fd07fc51d |
---|---|
5 # | 5 # |
6 # This software may be used and distributed according to the terms | 6 # This software may be used and distributed according to the terms |
7 # of the GNU General Public License, incorporated herein by reference. | 7 # of the GNU General Public License, incorporated herein by reference. |
8 | 8 |
9 import os, mimetypes, re | 9 import os, mimetypes, re |
10 from mercurial.node import * | 10 from mercurial.node import hex, nullid, short |
11 from mercurial import mdiff, ui, hg, util, archival, patch, hook | 11 from mercurial import mdiff, ui, hg, util, archival, patch, hook |
12 from mercurial import revlog, templater, templatefilters, changegroup | 12 from mercurial import revlog, templater, templatefilters, changegroup |
13 from common import get_mtime, style_map, paritygen, countgen, get_contact | 13 from common import get_mtime, style_map, paritygen, countgen, get_contact |
14 from common import ErrorResponse | 14 from common import ErrorResponse |
15 from common import HTTP_OK, HTTP_BAD_REQUEST, HTTP_NOT_FOUND, HTTP_SERVER_ERROR | 15 from common import HTTP_OK, HTTP_BAD_REQUEST, HTTP_NOT_FOUND, HTTP_SERVER_ERROR |