Commit 99d2cfc0 authored by Taddeüs Kroes's avatar Taddeüs Kroes

Bugfix in frame stringification

parent 5af22f06
......@@ -23,7 +23,7 @@ CLOSE_UNABLE = 1011
def printstr(s):
return ''.join(c if c in printable else '.' for c in s)
return ''.join(c if c in printable else '.' for c in str(s))
class Frame(object):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment