From 20a48a1ad3f720d915084d6d139b3790cd4630eb Mon Sep 17 00:00:00 2001 From: Aaron Bentley Date: Fri, 11 Mar 2005 18:39:26 +0000 Subject: Modularized commands into files --- becommands/open.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 becommands/open.py (limited to 'becommands/open.py') diff --git a/becommands/open.py b/becommands/open.py new file mode 100644 index 0000000..db89035 --- /dev/null +++ b/becommands/open.py @@ -0,0 +1,4 @@ +from libbe import cmdutil +def execute(args): + assert(len(args) == 1) + cmdutil.get_bug(args[0]).status = "open" -- cgit