1
0
Fork 0
mirror of https://github.com/ejwa/gitinspector.git synced 2025-03-19 14:58:12 +01:00

A newline was missing in the blame output when redirecting stdout.

This commit is contained in:
Adam Waldenberg 2014-01-15 13:26:36 +01:00
parent 49c80184e2
commit 2b4e6bb111

View file

@ -163,7 +163,7 @@ BLAME_INFO_TEXT = N_("Below are the number of rows from each author that have su
class BlameOutput(Outputable):
def __init__(self, hard):
if sys.stdout.isatty() and format.is_interactive_format():
if format.is_interactive_format():
print("")
self.hard = hard