On line 174 of fskdemodgui.py is the following:
in_line = sys.stdin.readline().decode('ascii')
This line causes an exception, "AttributeError: 'str' object has no attribute 'decode'"
Changing this to in_line = sys.stdin.readline() works, but I am not sure what the ramifications are elsewhere in the code.