diff options
-rw-r--r-- | becommands/html.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/becommands/html.py b/becommands/html.py index deb968e..2f3a7ee 100644 --- a/becommands/html.py +++ b/becommands/html.py @@ -566,8 +566,8 @@ class BEHTMLGen(): stack.append(comment) lines = ["--------- Comment ---------", "Name: %s" % comment.uuid, - "From: %s" % escape(comment.From), - "Date: %s" % escape(comment.time_string), + "From: %s" % escape(comment.author), + "Date: %s" % escape(comment.date), ""] lines.extend(escape(comment.body).splitlines()) if depth == 0: |