[Erp5-report] r19751 - /experimental/Experimental/patches/ERP5Form_ListField_with_jump.py

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Mar 7 12:55:35 CET 2008


Author: bartek
Date: Fri Mar  7 12:55:33 2008
New Revision: 19751

URL: http://svn.erp5.org?rev=19751&view=rev
Log:
handle more exceptions

Modified:
    experimental/Experimental/patches/ERP5Form_ListField_with_jump.py

Modified: experimental/Experimental/patches/ERP5Form_ListField_with_jump.py
URL: http://svn.erp5.org/experimental/Experimental/patches/ERP5Form_ListField_with_jump.py?rev=19751&r1=19750&r2=19751&view=diff
==============================================================================
--- experimental/Experimental/patches/ERP5Form_ListField_with_jump.py (original)
+++ experimental/Experimental/patches/ERP5Form_ListField_with_jump.py Fri Mar  7 12:55:33 2008
@@ -72,7 +72,7 @@
   html_string = ''
   try:
     here = REQUEST['here']
-  except KeyError: # we are in listbox and we don't want jump from here
+  except (KeyError, AttributeError): # we are in listbox and we don't want jump from here
     return ''
   except TypeError: # we are in ZMI
     return ''




More information about the Erp5-report mailing list