From: Peter Iannucci Date: Fri, 27 Feb 2009 04:10:12 +0000 (-0500) Subject: cosmetic change X-Git-Tag: 0.1.8~5 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-database.git/commitdiff_plain/647f2d0a08c9957ed1d818a77cb03648adb05765 cosmetic change svn path=/trunk/packages/invirt-database/; revision=2193 --- diff --git a/python/database/record.py b/python/database/record.py index dcc99b9..bcf3d45 100755 --- a/python/database/record.py +++ b/python/database/record.py @@ -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 = ''