aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/email_bugs.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/email_bugs.py')
-rw-r--r--becommands/email_bugs.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/becommands/email_bugs.py b/becommands/email_bugs.py
index d0366df..f6641e3 100644
--- a/becommands/email_bugs.py
+++ b/becommands/email_bugs.py
@@ -33,7 +33,8 @@ __desc__ = __doc__
sendmail='/usr/sbin/sendmail -t'
-def execute(args, manipulate_encodings=True, restrict_file_access=False):
+def execute(args, manipulate_encodings=True, restrict_file_access=False,
+ dir="."):
"""
>>> import os
>>> from libbe import bug
@@ -96,7 +97,8 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
if len(args) == 0:
raise cmdutil.UsageError
bd = bugdir.BugDir(from_disk=True,
- manipulate_encodings=manipulate_encodings)
+ manipulate_encodings=manipulate_encodings,
+ root=dir)
xml = show.output(args, bd, as_xml=True, with_comments=True)
subject = options.subject
if subject == None: