##// END OF EJS Templates
wireproto: use absolute_import
Gregory Szorc -
r25993:0851678b default
parent child Browse files
Show More
@@ -5,12 +5,29 b''
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 import urllib, tempfile, os, sys
8 from __future__ import absolute_import
9 from i18n import _
9
10 from node import bin, hex
10 import os
11 import changegroup as changegroupmod, bundle2, pushkey as pushkeymod
11 import sys
12 import peer, error, encoding, util, exchange
12 import tempfile
13 import urllib
13
14
15 from .i18n import _
16 from .node import (
17 bin,
18 hex,
19 )
20
21 from . import (
22 bundle2,
23 changegroup as changegroupmod,
24 encoding,
25 error,
26 exchange,
27 peer,
28 pushkey as pushkeymod,
29 util,
30 )
14
31
15 class abstractserverproto(object):
32 class abstractserverproto(object):
16 """abstract class that summarizes the protocol API
33 """abstract class that summarizes the protocol API
General Comments 0
You need to be logged in to leave comments. Login now