cosmetic change
authorPeter Iannucci <iannucci@mit.edu>
Fri, 27 Feb 2009 04:10:12 +0000 (23:10 -0500)
committerPeter Iannucci <iannucci@mit.edu>
Fri, 27 Feb 2009 04:10:12 +0000 (23:10 -0500)
svn path=/trunk/packages/invirt-database/; revision=2193

python/database/record.py

index dcc99b9..bcf3d45 100755 (executable)
@@ -36,7 +36,7 @@ class Record(object):
 
         if self._identity_field:
             identity = self.__dict__.get(self._identity_field)
-            identity = ' ' + (identity and repr(identity) or 'hash=%d'%hash(self))
+            identity = ' ' + (identity and repr(identity) or 'hash=%X'%hash(self))
         else:
             identity = ''