aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/import_xml.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/import_xml.py')
-rw-r--r--becommands/import_xml.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/becommands/import_xml.py b/becommands/import_xml.py
index d1ea026..b985193 100644
--- a/becommands/import_xml.py
+++ b/becommands/import_xml.py
@@ -29,7 +29,8 @@ if libbe.TESTING == True:
import unittest
__desc__ = __doc__
-def execute(args, manipulate_encodings=True, restrict_file_access=False):
+def execute(args, manipulate_encodings=True, restrict_file_access=False,
+ dir="."):
"""
>>> import time
>>> import StringIO
@@ -64,7 +65,8 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
filename = args[0]
bd = bugdir.BugDir(from_disk=True,
- manipulate_encodings=manipulate_encodings)
+ manipulate_encodings=manipulate_encodings,
+ root=dir)
if options.comment_root != None:
croot_bug,croot_comment = \
cmdutil.bug_comment_from_id(bd, options.comment_root)