aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/open.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/open.py')
-rw-r--r--becommands/open.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/open.py b/becommands/open.py
index c9e55a2..1b4c23e 100644
--- a/becommands/open.py
+++ b/becommands/open.py
@@ -44,7 +44,7 @@ def execute(args, manipulate_encodings=True):
raise cmdutil.UsageError, "Too many arguments."
bd = bugdir.BugDir(from_disk=True,
manipulate_encodings=manipulate_encodings)
- bug = cmdutil.bug_from_shortname(bd, args[0])
+ bug = cmdutil.bug_from_id(bd, args[0])
bug.status = "open"
def get_parser():