Comment 1 for bug 110092

Revision history for this message
John A Meinel (jameinel) wrote :

The fix may be as simple as:
=== modified file 'bzrlib/inventory.py'
--- bzrlib/inventory.py 2007-04-04 02:31:25 +0000
+++ bzrlib/inventory.py 2007-04-25 21:15:37 +0000
@@ -665,7 +665,7 @@
                 label_pair = (to_label, from_label)
             else:
                 label_pair = (from_label, to_label)
- print >> output_to, "Binary files %s and %s differ" % label_pair
+ print >> output_to, ("Binary files %s and %s differ" % label_pair).encode('utf8')

     def has_text(self):
         """See InventoryEntry.has_text."""