From 13ba1d87ab8fc45d2aed25662bf91053b0db5f9f Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 8 Oct 2009 10:10:08 +0200 Subject: Fixed git.blob.Blob.blame function which would return the text-per-commit as individual characters --- lib/git/blob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/blob.py') 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 -- cgit v1.2.1