diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-29 15:46:37 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-29 15:46:37 -0400 |
commit | 4e8882e74aad64859a16f17fa6bef8c04b33913d (patch) | |
tree | 26078e4fbc9a1176ed4e023e74c4bd7b6db1dcb5 /becommands/comment.py | |
parent | caf0111d9c571ac268c235880e6d18fa512e9efa (diff) | |
download | bugseverywhere-4e8882e74aad64859a16f17fa6bef8c04b33913d.tar.gz |
Added clean messages on bug_from_shortname failure.
So user's don't get confused.
Diffstat (limited to 'becommands/comment.py')
-rw-r--r-- | becommands/comment.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/becommands/comment.py b/becommands/comment.py index 55b5913..4221ef8 100644 --- a/becommands/comment.py +++ b/becommands/comment.py @@ -32,7 +32,7 @@ def execute(args, test=False): >>> os.chdir(bd.root) >>> execute(["a", "This is a comment about a"], test=True) >>> bd._clear_bugs() - >>> bug = bd.bug_from_shortname("a") + >>> bug = cmdutil.bug_from_shortname(bd, "a") >>> bug.load_comments(load_full=False) >>> comment = bug.comment_root[0] >>> print comment.body @@ -54,7 +54,7 @@ def execute(args, test=False): >>> os.environ["EDITOR"] = "echo 'I like cheese' > " >>> execute(["b"], test=True) >>> bd._clear_bugs() - >>> bug = bd.bug_from_shortname("b") + >>> bug = cmdutil.bug_from_shortname(bd, "b") >>> bug.load_comments(load_full=False) >>> comment = bug.comment_root[0] >>> print comment.body @@ -82,7 +82,7 @@ def execute(args, test=False): bd = bugdir.BugDir(from_disk=True, manipulate_encodings=not test) - bug = bd.bug_from_shortname(bugname) + bug = cmdutil.bug_from_shortname(bd, bugname) bug.load_comments(load_full=False) if is_reply: parent = bug.comment_root.comment_from_shortname(shortname, |