projects
/
invirt/packages/invirt-database.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add builds and build_logs tables to invirt-database for tracking build
[invirt/packages/invirt-database.git]
/
python
/
database
/
record.py
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 = ''