projects
/
invirt/packages/invirt-database.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01469c3
)
cosmetic change
author
Peter Iannucci
<iannucci@mit.edu>
Fri, 27 Feb 2009 04:10:12 +0000
(23:10 -0500)
committer
Peter 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
patch
|
blob
|
history
diff --git
a/python/database/record.py
b/python/database/record.py
index
dcc99b9
..
bcf3d45
100755
(executable)
--- 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 = ''