[Zope] Re: Problems with Iptc_Exif_reading_support product

Chris Withers chris at simplistix.co.uk
Wed Jan 21 04:08:27 EST 2004


Andreas Tille wrote:

>     try:
>         verbosedisplays = None
>     except: pass

Is that is? Yuk... bar try-except's such :-S

try replacing it with:

try:
     verbosedisplays = None
except:
     raise

...and see if you get any errors...

cheers,

Chris




More information about the Zope mailing list