Author: justi9
Date: 2008-12-16 11:50:39 -0500 (Tue, 16 Dec 2008)
New Revision: 3006
Modified:
mgmt/trunk/mint/python/mint/update.py
Log:
Fix a logging error (2)
Modified: mgmt/trunk/mint/python/mint/update.py
===================================================================
--- mgmt/trunk/mint/python/mint/update.py 2008-12-16 16:39:07 UTC (rev 3005)
+++ mgmt/trunk/mint/python/mint/update.py 2008-12-16 16:50:39 UTC (rev 3006)
@@ -104,11 +104,10 @@
self.priority = 0
def __repr__(self):
- return "%s(%s, %s, %s, %i)" % (self.__class__.__name__,
- self.broker,
- self.object and self.object.getClassKey(),
- self.object,
- self.priority)
+ return "%s(%s, %s, %i)" % (self.__class__.__name__,
+ self.broker,
+ self.object,
+ self.priority)
def getClass(self):
# XXX this is unfortunate
Show replies by date