diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 10:10:08 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 10:10:08 +0200 |
commit | 13ba1d87ab8fc45d2aed25662bf91053b0db5f9f (patch) | |
tree | fb48671b0ea8cff7b51176a7474b89a787d5528c /lib/git | |
parent | 75c161cbc017a7d176dd0d7b937db26b3ce637a1 (diff) | |
download | gitpython-13ba1d87ab8fc45d2aed25662bf91053b0db5f9f.tar.gz |
Fixed git.blob.Blob.blame function which would return the text-per-commit as individual characters
Diffstat (limited to 'lib/git')
-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 |