[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/form/utility.py Fixed a misspelled WidgetsError initialization.

Garrett Smith garrett at mojave-corp.com
Wed Jun 9 18:58:38 EDT 2004


Log message for revision 25320:
Fixed a misspelled WidgetsError initialization.


-=-
Modified: Zope3/trunk/src/zope/app/form/utility.py
===================================================================
--- Zope3/trunk/src/zope/app/form/utility.py	2004-06-09 21:09:07 UTC (rev 25319)
+++ Zope3/trunk/src/zope/app/form/utility.py	2004-06-09 22:58:37 UTC (rev 25320)
@@ -226,7 +226,7 @@
             except InputErrors, v:
                 errors.append(v)
     if errors:
-        raise WidgetsError(*errors)
+        raise WidgetsError(errors)
 
     return changed
 




More information about the Zope3-Checkins mailing list