1
0

misc ui and lib fixes for py3

This commit is contained in:
Dmitry Sorokin
2017-02-04 17:48:13 +03:00
committed by ThomasV
parent d304ccdf17
commit f02d18226b
9 changed files with 36 additions and 70 deletions

View File

@@ -332,7 +332,7 @@ def bfh(x):
elif isinstance(x, (list, tuple, map)):
return [bfh(sub) for sub in x]
else:
raise TypeError('Unexpected type: ' + type(x))
raise TypeError('Unexpected type: ' + str(type(x)))
def bh2u(x):