diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-11 18:39:26 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-11 18:39:26 +0000 |
commit | 20a48a1ad3f720d915084d6d139b3790cd4630eb (patch) | |
tree | 4b89c9694971033355bb018af36ddbb578024f65 /becommands/close.py | |
parent | 51c729fdfd03369e2ad7dc6752034469cfbdf253 (diff) | |
download | bugseverywhere-20a48a1ad3f720d915084d6d139b3790cd4630eb.tar.gz |
Modularized commands into files
Diffstat (limited to 'becommands/close.py')
-rw-r--r-- | becommands/close.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/becommands/close.py b/becommands/close.py new file mode 100644 index 0000000..184e2e1 --- /dev/null +++ b/becommands/close.py @@ -0,0 +1,4 @@ +from libbe import cmdutil +def execute(args): + assert(len(args) == 1) + cmdutil.get_bug(args[0]).status = "closed" |