Mercurial > public > mercurial-scm > hg
comparison mercurial/hgweb/server.py @ 6212:e75aab656f46
Remove unused imports
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:41 +0100 |
parents | f25070ecf334 |
children | fe8dbbe9520d |
comparison
equal
deleted
inserted
replaced
6211:f89fd07fc51d | 6212:e75aab656f46 |
---|---|
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, sys, errno, urllib, BaseHTTPServer, socket, SocketServer, traceback | 9 import os, sys, errno, urllib, BaseHTTPServer, socket, SocketServer, traceback |
10 from mercurial import ui, hg, util, templater | 10 from mercurial import hg, util |
11 from hgweb_mod import hgweb | 11 from hgweb_mod import hgweb |
12 from hgwebdir_mod import hgwebdir | 12 from hgwebdir_mod import hgwebdir |
13 from mercurial.i18n import gettext as _ | 13 from mercurial.i18n import gettext as _ |
14 | 14 |
15 def _splitURI(uri): | 15 def _splitURI(uri): |