aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/testutils/debiangittestrepo.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testutils/debiangittestrepo.py')
-rw-r--r--tests/testutils/debiangittestrepo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testutils/debiangittestrepo.py b/tests/testutils/debiangittestrepo.py
index c52c5f17..20184525 100644
--- a/tests/testutils/debiangittestrepo.py
+++ b/tests/testutils/debiangittestrepo.py
@@ -25,7 +25,7 @@ class DebianGitTestRepo(unittest.TestCase):
def tearDown(self):
context.teardown()
- def add_file(self, name, content=None, msg=None):
+ def add_file(self, name, content=None, msg=None, mode=None):
"""
Add a single file with name I{name} and content I{content}. If
I{content} is C{none} the content of the file is undefined.
@@ -41,7 +41,7 @@ class DebianGitTestRepo(unittest.TestCase):
if not os.path.exists(d):
os.makedirs(d)
- with open(path, 'w+') as f:
+ with open(path, mode or 'w+') as f:
content is None or f.write(content)
self.repo.add_files(name, force=True)
self.repo.commit_files(path, msg or "added %s" % name)