Matthew Versaggi wrote:
This module takes *ONE *argument (a string), however the error message I get is that it takes *FIVE *arguments. This is not true and is a bug in the PyGUI system.

I think the code in do_named_action that tries to re-raise the
exception is getting into trouble and masking the real cause of
your problem.

Try commenting out the whole "except:" clause in that function,
i.e. these four lines:

 except:
   import sys
   et, ev, tb = sys.exc_info()
   *raise et, et("%s (while doing action %r%r)" % (ev, action, args)), tb*

That should let the original exception propagate and hopefully
show you what's really happening.

--
Greg
_______________________________________________
Pygui mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pygui

Reply via email to