comparison mercurial/hgweb/server.py @ 10905:13a1b2fb7ef2

pylint, pyflakes: remove unused or duplicate imports
author Nicolas Dumazet <nicdumz.commits@gmail.com>
date Wed, 14 Apr 2010 17:58:10 +0900
parents 63948e7d37f7
children 49463314c24f
comparison
equal deleted inserted replaced
10903:cd21bf199d17 10905:13a1b2fb7ef2
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, errno, urllib, BaseHTTPServer, socket, SocketServer, traceback 9 import os, sys, errno, urllib, BaseHTTPServer, socket, SocketServer, traceback
10 from mercurial import hg, util, error 10 from mercurial import util, error
11 from mercurial.i18n import _ 11 from mercurial.i18n import _
12 12
13 def _splitURI(uri): 13 def _splitURI(uri):
14 """ Return path and query splited from uri 14 """ Return path and query splited from uri
15 15