fix broken py3 compat in 7186be08

This commit is contained in:
Philipp Klaus
2016-11-14 21:46:00 +01:00
parent 007cc4fd5c
commit ddddd6d536

View File

@@ -16,6 +16,11 @@ try:
except:
stdout = sys.stdout
try:
unicode
except:
unicode = str
logger = logging.getLogger(__name__)
def main():