~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

- fix up imports in remotebranch

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
import os
30
30
import urllib2
31
31
 
32
 
from errors import BzrError, BzrCheckError
33
 
from branch import Branch, BZR_BRANCH_FORMAT
34
 
from trace import mutter
35
 
 
36
 
# velocitynet.com.au transparently proxies connections and thereby
37
 
# breaks keep-alive -- sucks!
 
32
from bzrlib.errors import BzrError, BzrCheckError
 
33
from bzrlib.branch import Branch, BZR_BRANCH_FORMAT
 
34
from bzrlib.trace import mutter
 
35
from bzrlib.xml import serializer_v4
38
36
 
39
37
 
40
38
ENABLE_URLGRABBER = False
155
153
 
156
154
 
157
155
    def get_revision(self, revision_id):
158
 
        from bzrlib.revision import Revision
159
156
        try:
160
157
            revf = self.revision_store[revision_id]
161
158
        except KeyError: