From 8895be5592b93780bcedf16a40d522a86f891fa8 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 14 Nov 2008 20:34:57 -0500 Subject: Fixed a few more Comment.date->time calls. Bug keeps timestamps in Bug.time, so working towards consitency for Comment. --- libbe/bug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbe/bug.py') diff --git a/libbe/bug.py b/libbe/bug.py index 19297bb..b0ebca4 100644 --- a/libbe/bug.py +++ b/libbe/bug.py @@ -182,7 +182,7 @@ def new_bug(dir, uuid=None): def new_comment(bug, body=None): comm = bug.new_comment() comm.From = names.creator() - comm.date = time.time() + comm.time = time.time() comm.body = body return comm -- cgit