Re: wxpython warnings

2006-04-26 Thread Philippe Martin
Hi, This is an answer I got from the wxPython NG: """ If it is a wxLog message (I think it is) then you can temporarily disable log messages by creating an instance of wx.LogNull.  Or you can do something like set the log target to some other object than the default wx.LogGui, or set the log l

Re: wxpython warnings

2006-04-26 Thread Chris Mellon
On 26 Apr 2006 05:32:19 -0700, Iain King <[EMAIL PROTECTED]> wrote: > I have a wxpython program that displays TIF images. Sometimes it will > encounter a tag the tiff loader cant handle. Rather than silently > ignoring it, it pops up a window: > > Python Warning > unknown field with tag blah blah

Re: wxpython warnings

2006-04-26 Thread Iain King
Michele Petrazzo wrote: > Philippe Martin wrote: > > I had a similar but simple problem (the file was missing) and had to > > check by hand before calling wxPython. > > > > Can you check the tag by hand before calling wxPython ? > > > > > > Philippe > > > > > > Hi, > also I have the same problem w

Re: wxpython warnings

2006-04-26 Thread Michele Petrazzo
Philippe Martin wrote: > I had a similar but simple problem (the file was missing) and had to > check by hand before calling wxPython. > > Can you check the tag by hand before calling wxPython ? > > > Philippe > > Hi, also I have the same problem with g3/g4 images. My solution was convert tha

Re: wxpython warnings

2006-04-26 Thread Philippe Martin
I had a similar but simple problem (the file was missing) and had to check by hand before calling wxPython. Can you check the tag by hand before calling wxPython ? Philippe Iain King wrote: > I have a wxpython program that displays TIF images. Sometimes it will > encounter a tag the tiff l

wxpython warnings

2006-04-26 Thread Iain King
I have a wxpython program that displays TIF images. Sometimes it will encounter a tag the tiff loader cant handle. Rather than silently ignoring it, it pops up a window: Python Warning unknown field with tag blah blah I don't want it to do this, but I can't work out how to turn it off. Anyone k