Author: justi9
Date: 2008-12-18 13:30:39 -0500 (Thu, 18 Dec 2008)
New Revision: 3025
Modified:
mgmt/trunk/mint/python/mint/update.py
Log:
Try to avoid conversion error
Modified: mgmt/trunk/mint/python/mint/update.py
===================================================================
--- mgmt/trunk/mint/python/mint/update.py 2008-12-18 16:05:58 UTC (rev 3024)
+++ mgmt/trunk/mint/python/mint/update.py 2008-12-18 18:30:39 UTC (rev 3025)
@@ -118,8 +118,8 @@
def __repr__(self):
return "%s(%s, %s, %i)" % (self.__class__.__name__,
- self.broker,
- self.object,
+ str(self.broker),
+ str(self.object),
self.priority)
def getClass(self):
Show replies by date