[yum-commits] Branch 'yum-3_2_X' - output.py

James Antill james at osuosl.org
Tue Jul 7 14:49:07 UTC 2009


 output.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b05bda414682bce0eb145e52988e3d63268164ed
Author: James Antill <james at and.org>
Date:   Tue Jul 7 10:48:57 2009 -0400

    Fix print ascii unicode, matchcallback, BZ 508360

diff --git a/output.py b/output.py
index 3efccf2..74a7ce2 100755
--- a/output.py
+++ b/output.py
@@ -861,7 +861,7 @@ class YumOutput:
                 item = self._sub_highlight(item, highlight, matchfor,
                                            ignore_case=True)
             if can_overflow:
-                print self.fmtKeyValFill(key, item)
+                print self.fmtKeyValFill(key, to_unicode(item))
             else:
                 print key % item
         print '\n\n'


More information about the Yum-commits mailing list