##// END OF EJS Templates
statichttprepo: use absolute_import
Gregory Szorc -
r25978:762f4c6d default
parent child Browse files
Show More
@@ -7,10 +7,26 b''
7 7 # This software may be used and distributed according to the terms of the
8 8 # GNU General Public License version 2 or any later version.
9 9
10 from i18n import _
11 import changelog, byterange, url, error, namespaces
12 import localrepo, manifest, util, scmutil, store
13 import urllib, urllib2, errno, os
10 from __future__ import absolute_import
11
12 import errno
13 import os
14 import urllib
15 import urllib2
16
17 from .i18n import _
18 from . import (
19 byterange,
20 changelog,
21 error,
22 localrepo,
23 manifest,
24 namespaces,
25 scmutil,
26 store,
27 url,
28 util,
29 )
14 30
15 31 class httprangereader(object):
16 32 def __init__(self, url, opener):
General Comments 0
You need to be logged in to leave comments. Login now