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

  • Committer: John Arbash Meinel
  • Date: 2006-10-06 05:53:44 UTC
  • mfrom: (2063 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2071.
  • Revision ID: john@arbash-meinel.com-20061006055344-e73b97b7c6ca6e72
[merge] bzr.dev 2063

Show diffs side-by-side

added added

removed removed

Lines of Context:
252
252
 
253
253
    def get_tar_item(self, root, dp, now, tree):
254
254
        """Get a tarfile item and a file stream for its content."""
255
 
        item = tarfile.TarInfo(osutils.pathjoin(root, dp))
 
255
        item = tarfile.TarInfo(osutils.pathjoin(root, dp).encode('utf8'))
256
256
        # TODO: would be cool to actually set it to the timestamp of the
257
257
        # revision it was last changed
258
258
        item.mtime = now