diff mercurial/httprepo.py @ 12062:c327bfa5e831

cleanup: remove unused imports
author Brodie Rao <brodie@bitheap.org>
date Fri, 27 Aug 2010 13:32:38 -0400
parents 05deba16c5d5
children 6bd9778ae749
line wrap: on
line diff
--- a/mercurial/httprepo.py	Fri Aug 27 13:18:25 2010 +0200
+++ b/mercurial/httprepo.py	Fri Aug 27 13:32:38 2010 -0400
@@ -6,12 +6,11 @@
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
 
-from node import bin, hex, nullid
+from node import nullid
 from i18n import _
-import repo, changegroup, statichttprepo, error, url, util, wireproto
+import changegroup, statichttprepo, error, url, util, wireproto
 import os, urllib, urllib2, urlparse, zlib, httplib
 import errno, socket
-import encoding
 
 def zgenerator(f):
     zd = zlib.decompressobj()