Compatibility fix

This commit is contained in:
Stefan Ritter 2011-05-18 23:05:51 +02:00
parent ab959ad834
commit b06dc41a2c
1 changed files with 5 additions and 2 deletions

View File

@ -20,8 +20,11 @@ import locale
import re import re
import codecs import codecs
# print() will output ascii, but we want utf-8 # print() will output ascii, but we want utf-8 (python3)
sys.stdout = codecs.getwriter('utf8')(sys.stdout.buffer) try:
sys.stdout = codecs.getwriter('utf8')(sys.stdout.buffer)
except:
None
# Backward compatibilty to python2 # Backward compatibilty to python2
try: try: