https://bugs.gpodder.org/show_bug.cgi?id=1697
--- Comment #1 from Thomas Perl <[email protected]> 2012-10-14 20:48:57 BST --- It's safe_print() in bin/gpo. This is mostly a function that does all kinds of crazy encoding-related stuff to avoid all the stupid bugs of Python 2 wrt encoding. In Python 3, we can probably have a shortcut there, and replace "safe_print" just with "print" (e.g. by writing after the "def safe_print():" block: safe_print = print We can do this in Python 3, because print is a normal function. -- Configure bugmail: https://bugs.gpodder.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. _______________________________________________ gPodder-Bugs mailing list [email protected] https://lists.berlios.de/mailman/listinfo/gpodder-bugs
