diff options
Diffstat (limited to 'becommands/severity.py')
-rw-r--r-- | becommands/severity.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/severity.py b/becommands/severity.py index 65467e3..74f241d 100644 --- a/becommands/severity.py +++ b/becommands/severity.py @@ -40,7 +40,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.severity elif len(args) == 2: |