The init method of USBtinException uses the "super" operator with no arguments, which throws an exception on at least some versions of Python. It should instead say:
def __init__(self, *args, **kwargs): super(USBtinException, self).__init__(*args, **kwargs)
The init method of USBtinException uses the "super" operator with no arguments, which throws an exception on at least some versions of Python. It should instead say:
def __init__(self, *args, **kwargs): super(USBtinException, self).__init__(*args, **kwargs)