mercurial/httprepo.py
changeset 3877 abaee83ce0a6
parent 3703 e674cae8efee
child 3891 6b4127c7d52a
--- a/mercurial/httprepo.py	Tue Dec 12 18:16:23 2006 -0600
+++ b/mercurial/httprepo.py	Wed Dec 13 13:27:09 2006 -0600
@@ -9,9 +9,8 @@
 from node import *
 from remoterepo import *
 from i18n import gettext as _
-from demandload import *
-demandload(globals(), "hg os urllib urllib2 urlparse zlib util httplib")
-demandload(globals(), "errno keepalive tempfile socket changegroup")
+import hg, os, urllib, urllib2, urlparse, zlib, util, httplib
+import errno, keepalive, tempfile, socket, changegroup
 
 class passwordmgr(urllib2.HTTPPasswordMgrWithDefaultRealm):
     def __init__(self, ui):