diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2024-01-19 03:07:54 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2024-01-21 21:57:15 +0100 |
commit | b638466e6a6ada7478758cf740c89650d0f70f59 (patch) | |
tree | f34979881a12818ba46a4b74a7a7096e737e441a /libbe/command/comment.py | |
parent | b11b63156666589ec9749fa318fe7ecd9d1f136d (diff) | |
download | bugseverywhere-b638466e6a6ada7478758cf740c89650d0f70f59.tar.gz |
WIP plenty of clean-ups and porting to Python 3.
Diffstat (limited to 'libbe/command/comment.py')
-rw-r--r-- | libbe/command/comment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/command/comment.py b/libbe/command/comment.py index e110c81..bfd24fe 100644 --- a/libbe/command/comment.py +++ b/libbe/command/comment.py @@ -56,7 +56,7 @@ class Comment (libbe.command.Command): >>> comment = bug.comment_root[0] >>> comment.id.storage() == comment.uuid True - >>> print comment.body + >>> print(comment.body) This is a comment about a <BLANKLINE> >>> comment.author @@ -84,7 +84,7 @@ class Comment (libbe.command.Command): >>> bug = bd.bug_from_uuid('b') >>> bug.load_comments(load_full=False) >>> comment = bug.comment_root[0] - >>> print comment.body + >>> print(comment.body) I like cheese <BLANKLINE> >>> ui.cleanup() |