aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/open.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/open.py')
-rw-r--r--becommands/open.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/becommands/open.py b/becommands/open.py
index e6ff51e..bd0e4fa 100644
--- a/becommands/open.py
+++ b/becommands/open.py
@@ -2,4 +2,5 @@
from libbe import cmdutil
def execute(args):
assert(len(args) == 1)
- cmdutil.get_bug(args[0]).status = "open"
+ bug = cmdutil.get_bug(args[0])
+ bug.status = "open"