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

  • Committer: Aaron Bentley
  • Date: 2008-10-26 11:52:46 UTC
  • mto: (0.14.30 prepare-shelf)
  • mto: This revision was merged to the branch mainline in revision 3820.
  • Revision ID: aaron@aaronbentley.com-20081026115246-cbzk6t33j20zls8a
Add unicode symlink targets to tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1215
1215
            if kind == 'directory':
1216
1216
                self.create_directory(trans_id)
1217
1217
            if kind == 'symlink':
1218
 
                self.create_symlink(content, trans_id)
 
1218
                self.create_symlink(content.decode('utf-8'), trans_id)
1219
1219
 
1220
1220
 
1221
1221
class TreeTransform(TreeTransformBase):