~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

(jr) Add gettext() to uses of note() (Jonathan Riddell)

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    NoSuchRevision,
41
41
    SmartProtocolError,
42
42
    )
 
43
from bzrlib.i18n import gettext
43
44
from bzrlib.lockable_files import LockableFiles
44
45
from bzrlib.smart import client, vfs, repository as smart_repo
45
46
from bzrlib.smart.client import _SmartClient
1873
1874
        from bzrlib import osutils
1874
1875
        import tarfile
1875
1876
        # TODO: Maybe a progress bar while streaming the tarball?
1876
 
        note("Copying repository content as tarball...")
 
1877
        note(gettext("Copying repository content as tarball..."))
1877
1878
        tar_file = self._get_tarball('bz2')
1878
1879
        if tar_file is None:
1879
1880
            return None