diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-08-27 02:40:56 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-08-27 02:40:56 +0200 |
commit | fecaba8b21c2b92e6d84ee8b80d7479166a9b328 (patch) | |
tree | 80584165606079ebe7abf3d33f18c1e9f06957e1 /ponysay | |
parent | d14ad81de1f4e7350cdef57e655375b4f7ffefc9 (diff) | |
download | ponysay-fecaba8b21c2b92e6d84ee8b80d7479166a9b328.tar.gz ponysay-fecaba8b21c2b92e6d84ee8b80d7479166a9b328.tar.bz2 ponysay-fecaba8b21c2b92e6d84ee8b80d7479166a9b328.zip |
misc m fixes
Diffstat (limited to 'ponysay')
-rwxr-xr-x | ponysay | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ VERSION = 'dev' # this line should not be edited, it is fixed by the build syst Hack to enforce UTF-8 in output (in the future, if you see anypony not using utf-8 in programs by default, report them to Princess Celestia so she can banish them to the moon) ''' def print(text = '', end = '\n'): - sys.stdout.buffer.write((text + end).encode('utf-8')) + sys.stdout.buffer.write((str(text) + end).encode('utf-8')) ''' |