aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/due.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/due.py')
-rw-r--r--becommands/due.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/becommands/due.py b/becommands/due.py
index 6f11ad4..0b8d1e9 100644
--- a/becommands/due.py
+++ b/becommands/due.py
@@ -19,7 +19,8 @@ __desc__ = __doc__
DUE_TAG="DUE:"
-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) not in (1, 2):
raise cmdutil.UsageError('Incorrect number of 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])
if len(args) == 1:
due_time = get_due(bug)