summaryrefslogtreecommitdiff
path: root/git/objects/commit.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-07 14:44:02 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-07 14:44:02 +0100
commit73790919dbe038285a3612a191c377bc27ae6170 (patch)
treeced3af491a2b4354c15fb161102e9704d180d8d4 /git/objects/commit.py
parent45eb728554953fafcee2aab0f76ca65e005326b0 (diff)
parentb6ed8d46c72366e111b9a97a7c238ef4af3bf4dc (diff)
downloadgitpython-73790919dbe038285a3612a191c377bc27ae6170.tar.gz
Merge branch 'commit_by_actor' of https://github.com/firm1/GitPython into firm1-commit_by_actor
Diffstat (limited to 'git/objects/commit.py')
-rw-r--r--git/objects/commit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/commit.py b/git/objects/commit.py
index 8f93d1b9..f2ce91ca 100644
--- a/git/objects/commit.py
+++ b/git/objects/commit.py
@@ -358,7 +358,7 @@ class Commit(base.Object, Iterable, Diffable, Traversable, Serializable):
# as well ...
import git.refs
try:
- repo.head.set_commit(new_commit, logmsg="commit: %s" % message)
+ repo.head.set_commit(new_commit, logmsg=message)
except ValueError:
# head is not yet set to the ref our HEAD points to
# Happens on first commit