aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/commit.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/commit.py')
-rw-r--r--becommands/commit.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/becommands/commit.py b/becommands/commit.py
index 39d1e2e..cade355 100644
--- a/becommands/commit.py
+++ b/becommands/commit.py
@@ -18,7 +18,8 @@ from libbe import cmdutil, bugdir, editor, vcs
import sys
__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
>>> from libbe import bug
@@ -37,7 +38,8 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
if len(args) != 1:
raise cmdutil.UsageError("Please supply a commit message")
bd = bugdir.BugDir(from_disk=True,
- manipulate_encodings=manipulate_encodings)
+ manipulate_encodings=manipulate_encodings,
+ root=dir)
if args[0] == '-': # read summary from stdin
assert options.body != "EDITOR", \
"Cannot spawn and editor when the summary is using stdin."