diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 10:10:08 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 22:59:54 +0200 |
commit | 33401c3b9b99bac3ae13a90b657cff94dfe7125b (patch) | |
tree | d07433e7a9edaec4a2a0ec298dc0d2e75ff21d6b /lib/git/blob.py | |
parent | 4c39f9da792792d4e73fc3a5effde66576ae128c (diff) | |
download | gitpython-33401c3b9b99bac3ae13a90b657cff94dfe7125b.tar.gz |
Fixed git.blob.Blob.blame function which would return the text-per-commit as individual characters
Diffstat (limited to 'lib/git/blob.py')
-rw-r--r-- | lib/git/blob.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/blob.py b/lib/git/blob.py index 82f92ce3..a15c5466 100644 --- a/lib/git/blob.py +++ b/lib/git/blob.py @@ -135,7 +135,7 @@ class Blob(object): m = re.search(r'^\t(.*)$', line) text, = m.groups() blames[-1][0] = c - blames[-1][1] += text + blames[-1][1].append( text ) info = None return blames |