diff options
Diffstat (limited to 'libbe/comment.py')
-rw-r--r-- | libbe/comment.py | 2 |
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) |