/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Andrew Bennetts
  • Date: 2008-01-02 06:08:03 UTC
  • mto: This revision was merged to the branch mainline in revision 3174.
  • Revision ID: andrew.bennetts@canonical.com-20080102060803-svnxno2teuvzjzv0
Remove some unused imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    repository,
27
27
    revision,
28
28
)
29
 
from bzrlib.branch import Branch, BranchReferenceFormat
 
29
from bzrlib.branch import BranchReferenceFormat
30
30
from bzrlib.bzrdir import BzrDir, RemoteBzrDirFormat
31
31
from bzrlib.config import BranchConfig, TreeConfig
32
32
from bzrlib.decorators import needs_read_lock, needs_write_lock
34
34
from bzrlib.lockable_files import LockableFiles
35
35
from bzrlib.pack import ContainerPushParser
36
36
from bzrlib.smart import client, vfs
37
 
from bzrlib.symbol_versioning import (
38
 
    deprecated_method,
39
 
    zero_ninetyone,
40
 
    )
41
37
from bzrlib.trace import note
42
38
 
43
39
# Note: RemoteBzrDirFormat is in bzrdir.py
777
773
        from bzrlib import osutils
778
774
        import tarfile
779
775
        import tempfile
780
 
        from StringIO import StringIO
781
776
        # TODO: Maybe a progress bar while streaming the tarball?
782
777
        note("Copying repository content as tarball...")
783
778
        tar_file = self._get_tarball('bz2')