[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/registration/browser/__init__.py Fixed typo that caused failure. Note that really noone should be using

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Dec 9 13:06:19 EST 2004


Log message for revision 28598:
  Fixed typo that caused failure. Note that really noone should be using 
  ComponentPathWidget anymore. :-)
  

Changed:
  U   Zope3/trunk/src/zope/app/registration/browser/__init__.py

-=-
Modified: Zope3/trunk/src/zope/app/registration/browser/__init__.py
===================================================================
--- Zope3/trunk/src/zope/app/registration/browser/__init__.py	2004-12-09 17:52:40 UTC (rev 28597)
+++ Zope3/trunk/src/zope/app/registration/browser/__init__.py	2004-12-09 18:06:13 UTC (rev 28598)
@@ -180,7 +180,7 @@
             "of using the component's path.",
             DeprecationWarning, stacklevel=2,
             )        
-        super(ComponentPathWidget, self).__init__(*agrs, **kw)
+        super(ComponentPathWidget, self).__init__(*args, **kw)
 
     def __call__(self):
         """See zope.app.browser.interfaces.form.IBrowserWidget"""



More information about the Zope3-Checkins mailing list