Skip to content

Commit 1045242

Browse files
committed
Fix blame output (fixes gitpython-developers#47)
1 parent 660bdca commit 1045242

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/db/cmd/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,9 +750,9 @@ def blame(self, rev, file):
750750
m = self.re_tab_full_line.search(line)
751751
text, = m.groups()
752752
blames[-1][0] = c
753-
blames[-1][1].append(text)
754753
info = { 'id' : sha }
755754
# END if we collected commit info
755+
blames[-1][1].append(text)
756756
# END distinguish filename,summary,rest
757757
# END distinguish author|committer vs filename,summary,rest
758758
# END distinguish hexsha vs other information

0 commit comments

Comments
 (0)