summaryrefslogtreecommitdiff
path: root/git/index/base.py
diff options
context:
space:
mode:
authorfirm1 <dralliw@users.noreply.github.com>2014-04-09 16:03:21 +0200
committerfirm1 <dralliw@users.noreply.github.com>2014-04-09 16:03:21 +0200
commit3a1e0d7117b9e4ea4be3ef4895e8b2b4937ff98a (patch)
treeb8749f48ee3c9cc1e1adbeaabde2b2969bb4bb93 /git/index/base.py
parent4a7e7a769087b1790a18d6645740b5b670f5086b (diff)
downloadgitpython-3a1e0d7117b9e4ea4be3ef4895e8b2b4937ff98a.tar.gz
fix syntax error
Diffstat (limited to 'git/index/base.py')
-rw-r--r--git/index/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/index/base.py b/git/index/base.py
index 0c1b68d9..160d21bf 100644
--- a/git/index/base.py
+++ b/git/index/base.py
@@ -873,7 +873,7 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable):
return out
- def def commit(self, message, parent_commits=None, head=True, author=None, committer=None):
+ def commit(self, message, parent_commits=None, head=True, author=None, committer=None):
"""Commit the current default index file, creating a commit object.
For more information on the arguments, see tree.commit.