Author: justi9
Date: 2009-09-03 13:40:08 -0400 (Thu, 03 Sep 2009)
New Revision: 3617
Modified:
mgmt/trunk/cumin/python/cumin/messaging/connection.py
Log:
Fix a crash due to sorting on the wrong column name
Modified: mgmt/trunk/cumin/python/cumin/messaging/connection.py
===================================================================
--- mgmt/trunk/cumin/python/cumin/messaging/connection.py 2009-09-03 16:04:50 UTC (rev
3616)
+++ mgmt/trunk/cumin/python/cumin/messaging/connection.py 2009-09-03 17:40:08 UTC (rev
3617)
@@ -215,7 +215,7 @@
col = self.ExpiresColumn(app, "expires")
self.add_column(col)
- col = self.StatusColumn(app, "status")
+ col = self.StatusColumn(app, "attached")
self.add_column(col)
self.__phase = PhaseSwitch(app, "phase")
Show replies by date