From 2b4e6bb111d22f17b1629fbdc14a204672206e9c Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Wed, 15 Jan 2014 13:26:36 +0100 Subject: [PATCH] A newline was missing in the blame output when redirecting stdout. --- gitinspector/blame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitinspector/blame.py b/gitinspector/blame.py index 37955b2..4beb1cb 100644 --- a/gitinspector/blame.py +++ b/gitinspector/blame.py @@ -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