aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/bug.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/bug.py')
-rw-r--r--libbe/bug.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/bug.py b/libbe/bug.py
index b1e8d26..6a9a589 100644
--- a/libbe/bug.py
+++ b/libbe/bug.py
@@ -119,7 +119,7 @@ class Bug(object):
self.status = "open"
self.severity = "minor"
self.assigned = None
- self.time = time.time()
+ self.time = int(time.time()) # only save to second precision
self.comment_root = comment.Comment(self, uuid=comment.INVALID_UUID)
def __repr__(self):