comparison mercurial/hgweb/hgweb_mod.py @ 12062:c327bfa5e831

cleanup: remove unused imports
author Brodie Rao <brodie@bitheap.org>
date Fri, 27 Aug 2010 13:32:38 -0400
parents 368cd5325348
children f64b416b0ac8
comparison
equal deleted inserted replaced
12061:f7557345b199 12062:c327bfa5e831
4 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> 4 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
5 # 5 #
6 # This software may be used and distributed according to the terms of the 6 # This software may be used and distributed according to the terms of the
7 # GNU General Public License version 2 or any later version. 7 # GNU General Public License version 2 or any later version.
8 8
9 import os, sys, urllib 9 import os
10 from mercurial import ui, hg, hook, error, encoding, templater, util 10 from mercurial import ui, hg, hook, error, encoding, templater
11 from common import get_mtime, ErrorResponse, permhooks 11 from common import get_mtime, ErrorResponse, permhooks
12 from common import HTTP_OK, HTTP_BAD_REQUEST, HTTP_NOT_FOUND, HTTP_SERVER_ERROR 12 from common import HTTP_OK, HTTP_BAD_REQUEST, HTTP_NOT_FOUND, HTTP_SERVER_ERROR
13 from request import wsgirequest 13 from request import wsgirequest
14 import webcommands, protocol, webutil 14 import webcommands, protocol, webutil
15 15