From 647f2d0a08c9957ed1d818a77cb03648adb05765 Mon Sep 17 00:00:00 2001 From: Peter Iannucci Date: Thu, 26 Feb 2009 23:10:12 -0500 Subject: [PATCH] cosmetic change svn path=/trunk/packages/invirt-database/; revision=2193 --- python/database/record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = '' -- 1.7.9.5