On Wed, Jul 11, 2001 at 03:36:30PM +0200, Gilles Poidevin wrote:
>     except:

Are you sure the exception is what you think it is (cookie not set)?
A bare "except:" will catch any exception.  It's better to explicitly
state which exception you're excepting, except for the top-level
"fallback of last resort" code.

Have you tried putting "import traceback;  traceback.print_exc()"
in the except: clause?  Then you can verify which exception is really
being thrown.

-- 
-Mike (Iron) Orr, [EMAIL PROTECTED]  (if mail problems: [EMAIL PROTECTED])
   http://iron.cx/     English * Esperanto * Russkiy * Deutsch * Espan~ol

_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to