diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-14 22:09:06 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-14 22:09:06 +0000 |
commit | e2bbeeea8da29dbcbe523e2f5310a198b9bc71ce (patch) | |
tree | 8745875a5f9b5c211cd49a4002245bd8934362e7 /becommands | |
parent | a23c9c6cfbcc2bc77e6723edc4e059bca82fa924 (diff) | |
download | bugseverywhere-e2bbeeea8da29dbcbe523e2f5310a198b9bc71ce.tar.gz |
Initial implementation of saving to mapfile
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/open.py | 3 |
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" |