Author: eallen
Date: 2009-05-28 10:14:44 -0400 (Thu, 28 May 2009)
New Revision: 3395
Modified:
mgmt/trunk/cumin/python/cumin/widgets.py
Log:
Minor cleanup: process() doesn't take an *args.
Modified: mgmt/trunk/cumin/python/cumin/widgets.py
===================================================================
--- mgmt/trunk/cumin/python/cumin/widgets.py 2009-05-28 14:11:05 UTC (rev 3394)
+++ mgmt/trunk/cumin/python/cumin/widgets.py 2009-05-28 14:14:44 UTC (rev 3395)
@@ -55,7 +55,7 @@
self.add_child(self.actions)
def do_process(self, session, *args):
- self.actions.process(session, *args)
+ self.actions.process(session)
super(CuminMainView, self).do_process(session, *args)
Show replies by date