aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/comment.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2008-11-23 06:51:30 -0500
committerW. Trevor King <wking@drexel.edu>2008-11-23 06:51:30 -0500
commit9e0a846ff4fdaac45665e5a1e085aa37e3fa135b (patch)
tree45f9b590a6f239203993baf45ca59d003f5582f8 /libbe/comment.py
parent4a626e67b3f401b8e242a55571a802147123a196 (diff)
downloadbugseverywhere-9e0a846ff4fdaac45665e5a1e085aa37e3fa135b.tar.gz
Added archive/project init code for `./test_usage.sh arch`.
Also some minor cleanups.
Diffstat (limited to 'libbe/comment.py')
-rw-r--r--libbe/comment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/comment.py b/libbe/comment.py
index 95dade6..0bfc12d 100644
--- a/libbe/comment.py
+++ b/libbe/comment.py
@@ -218,7 +218,7 @@ class Comment(Tree):
def add_reply(self, reply):
if reply.time != None and self.time != None:
- assert reply.time > self.time
+ assert reply.time >= self.time
if self.uuid != INVALID_UUID:
reply.in_reply_to = self.uuid
self.append(reply)