[wxPython-users] Better exception handling

Jorgen Bodde jorgen.maillist at gmail.com
Fri Jun 29 12:46:04 PDT 2007


Hi Gre7g,

YES!!! That was it! Stupid me I thought the first parameter in my
App() class was the parent specification or something. I never knew
how I actually got that 0 there :-( But it works! Thanks a lot for all
your help (you  and the others)

I'm still a wxPython newbie, so I'm thankful for all the patience ;-)

It's really important that people who use my app get feedback on
exceptions which they can email me quickly, and a redirect box is
exactly what I need.

Thanks!
- Jorgen

On 6/29/07, Gre7g Luterman <hafeliel at yahoo.com> wrote:
> --- Jorgen Bodde <jorgen.maillist at gmail.com> wrote:
>
> > App = TestApp(0, redirect = True)
>
> redirect is the first parameter, so you're specifying
> it twice.  Try:
>
> App = TestApp(True)
>
> or:
>
> App = TestApp(redirect=True)
>
> Gre7g
>
>
>
> ____________________________________________________________________________________
> Sucker-punch spam with award-winning protection.
> Try the free Yahoo! Mail Beta.
> http://advision.webevents.yahoo.com/mailbeta/features_spam.html
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: wxPython-users-unsubscribe at lists.wxwidgets.org
> For additional commands, e-mail: wxPython-users-help at lists.wxwidgets.org
>
>




More information about the wxpython-users mailing list