Author: eallen
Date: 2008-12-17 08:26:51 -0500 (Wed, 17 Dec 2008)
New Revision: 3014
Modified:
mgmt/trunk/cumin/python/cumin/system.py
Log:
Fixed bad call to super for rendering the system slot vis.
Modified: mgmt/trunk/cumin/python/cumin/system.py
===================================================================
--- mgmt/trunk/cumin/python/cumin/system.py 2008-12-16 20:51:31 UTC (rev 3013)
+++ mgmt/trunk/cumin/python/cumin/system.py 2008-12-17 13:26:51 UTC (rev 3014)
@@ -144,7 +144,7 @@
def render(self, session):
cells = self.get_cells(session)
if len(cells) > 0:
- return super(SystemStats.SlotUtilizationGrid).render(self, session)
+ return super(SystemStats.SlotUtilizationGrid, self).render(session)
def get_cells(self, session):
system = self.frame.get_args(session)[0]
Show replies by date