diff options
Diffstat (limited to 'becommands/open.py')
-rw-r--r-- | becommands/open.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/becommands/open.py b/becommands/open.py index c2c15e2..a6fe48d 100644 --- a/becommands/open.py +++ b/becommands/open.py @@ -21,7 +21,8 @@ from libbe import cmdutil, bugdir __desc__ = __doc__ -def execute(args, manipulate_encodings=True, restrict_file_access=False): +def execute(args, manipulate_encodings=True, restrict_file_access=False, + dir="."): """ >>> import os >>> bd = bugdir.SimpleBugDir() @@ -43,7 +44,8 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False): if len(args) > 1: raise cmdutil.UsageError, "Too many arguments." bd = bugdir.BugDir(from_disk=True, - manipulate_encodings=manipulate_encodings) + manipulate_encodings=manipulate_encodings, + root=dir) bug = cmdutil.bug_from_id(bd, args[0]) bug.status = "open" |