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/status.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/status.py')
-rw-r--r-- | becommands/status.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/status.py b/becommands/status.py index edc948d..bff0626 100644 --- a/becommands/status.py +++ b/becommands/status.py @@ -37,7 +37,7 @@ def execute(args, test=False): if len(args) not in (1,2): raise cmdutil.UsageError bd = bugdir.BugDir(from_disk=True, manipulate_encodings=not test) - bug = bd.bug_from_shortname(args[0]) + bug = cmdutil.bug_from_shortname(bd, args[0]) if len(args) == 1: print bug.status else: |