diff options
author | firm1 <dralliw@users.noreply.github.com> | 2014-04-09 16:03:21 +0200 |
---|---|---|
committer | firm1 <dralliw@users.noreply.github.com> | 2014-04-09 16:03:21 +0200 |
commit | 3a1e0d7117b9e4ea4be3ef4895e8b2b4937ff98a (patch) | |
tree | b8749f48ee3c9cc1e1adbeaabde2b2969bb4bb93 /git/index/base.py | |
parent | 4a7e7a769087b1790a18d6645740b5b670f5086b (diff) | |
download | gitpython-3a1e0d7117b9e4ea4be3ef4895e8b2b4937ff98a.tar.gz |
fix syntax error
Diffstat (limited to 'git/index/base.py')
-rw-r--r-- | git/index/base.py | 2 |
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. |