/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/tree.py

partial merge from Martin, fixed conflicts with bzrlib/tree.py and revno 1391

Show diffs side-by-side

added added

removed removed

Lines of Context:
294
294
    """
295
295
    import os
296
296
    os.mkdir(dest)
297
 
    mutter('export version %r' % tree)
 
297
    mutter('export version %r', tree)
298
298
    inv = tree.inventory
299
299
    for dp, ie in inv.iter_entries():
300
300
        if dp != ".bzrignore":
344
344
            ball = tarfile.open(dest, 'w:' + compression)
345
345
        except tarfile.CompressionError, e:
346
346
            raise BzrError(str(e))
347
 
        mutter('export version %r' % tree)
 
347
        mutter('export version %r', tree)
348
348
        inv = tree.inventory
349
349
        for dp, ie in inv.iter_entries():
350
350
            if dp != ".bzrignore":