diff options
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() |