~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

[merge] robertc's integration, updated tests to check for retcode=3

Show diffs side-by-side

added added

removed removed

Lines of Context:
269
269
        """
270
270
        fullpath = appendpath(dest, dp)
271
271
        self._put_on_disk(fullpath, tree)
272
 
        mutter("  export {%s} kind %s to %s" % (self.file_id, self.kind, fullpath))
 
272
        mutter("  export {%s} kind %s to %s", self.file_id,
 
273
                self.kind, fullpath)
273
274
 
274
275
    def _put_on_disk(self, fullpath, tree):
275
276
        """Put this entry onto disk at fullpath, from tree tree."""
647
648
 
648
649
    def _put_in_tar(self, item, tree):
649
650
        """See InventoryEntry._put_in_tar."""
650
 
        iterm.type = tarfile.SYMTYPE
 
651
        item.type = tarfile.SYMTYPE
651
652
        fileobj = None
652
653
        item.size = 0
653
654
        item.mode = 0755