comparison mercurial/wireproto.py @ 25240:a415e94fd34f

wireproto: remove unused 'store' import
author Martin von Zweigbergk <martinvonz@google.com>
date Thu, 21 May 2015 11:34:40 -0700
parents 41965bf23295
children c50655b9c856
comparison
equal deleted inserted replaced
25239:714f612f2afc 25240:a415e94fd34f
7 7
8 import urllib, tempfile, os, sys 8 import urllib, tempfile, os, sys
9 from i18n import _ 9 from i18n import _
10 from node import bin, hex 10 from node import bin, hex
11 import changegroup as changegroupmod, bundle2, pushkey as pushkeymod 11 import changegroup as changegroupmod, bundle2, pushkey as pushkeymod
12 import peer, error, encoding, util, store, exchange 12 import peer, error, encoding, util, exchange
13 13
14 14
15 class abstractserverproto(object): 15 class abstractserverproto(object):
16 """abstract class that summarizes the protocol API 16 """abstract class that summarizes the protocol API
17 17