aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/status.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/status.py')
-rw-r--r--becommands/status.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/becommands/status.py b/becommands/status.py
index fd31c97..58b6f63 100644
--- a/becommands/status.py
+++ b/becommands/status.py
@@ -18,7 +18,8 @@
from libbe import cmdutil, bugdir, bug
__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()
@@ -39,7 +40,8 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
if len(args) not in (1,2):
raise cmdutil.UsageError
bd = bugdir.BugDir(from_disk=True,
- manipulate_encodings=manipulate_encodings)
+ manipulate_encodings=manipulate_encodings,
+ root=dir)
bug = cmdutil.bug_from_id(bd, args[0])
if len(args) == 1:
print bug.status