~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

Fix typo, and clean up some ununsed import warnings from pyflakes at the same time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
from bzrlib import branch, errors, repository
23
23
from bzrlib.bzrdir import BzrDir, BzrDirFormat, RemoteBzrDirFormat
24
 
from bzrlib.branch import Branch, BranchFormat, BranchReferenceFormat
 
24
from bzrlib.branch import BranchReferenceFormat
25
25
from bzrlib.smart import client, vfs
26
 
from bzrlib.trace import mutter
27
26
from bzrlib.urlutils import unescape
28
27
 
29
28
# Note: RemoteBzrDirFormat is in bzrdir.py
170
169
            via the VFS.
171
170
        """
172
171
        if real_repository:
173
 
            self._real_repository = _real_repository
 
172
            self._real_repository = real_repository
174
173
        self.bzrdir = remote_bzrdir
175
174
        self._format = RemoteRepositoryFormat()
176
175