[yum-commits] yum-groups-manager.py

James Antill james at osuosl.org
Thu Oct 16 21:23:08 UTC 2008


 yum-groups-manager.py |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit e598b1b8565bc799bd0f69e8c7305c46e9354058
Author: James Antill <james at and.org>
Date:   Thu Oct 16 17:22:42 2008 -0400

    Fix groups-manager again, for loads this time

diff --git a/yum-groups-manager.py b/yum-groups-manager.py
index bb13b4e..856e4f6 100755
--- a/yum-groups-manager.py
+++ b/yum-groups-manager.py
@@ -285,7 +285,9 @@ def main():
             sys.exit(50)
 
     if (opts.print2stdout or (opts.print2stdout is None and not opts.save)):
-        print comps.xml()
+        # Why the to_unicode()? Why is it converting at all?
+        # Why doesn't setup_locale() fix this? ... all good questions
+        print to_unicode(comps.xml())
 
 if __name__ == "__main__":
     main()


More information about the Yum-commits mailing list