mirror of
https://github.com/ejwa/gitinspector.git
synced 2025-03-13 20:18:52 +01:00
Removed unnecessary print in the blame module.
This print should only be enabled in any "interactive format", such as the terminal (text) output.
This commit is contained in:
parent
e263982806
commit
791e9e39dd
1 changed files with 3 additions and 1 deletions
|
@ -163,9 +163,11 @@ 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():
|
||||
print("")
|
||||
|
||||
self.hard = hard
|
||||
self.changes = changes.get(hard)
|
||||
print("")
|
||||
get(self.hard, self.changes)
|
||||
Outputable.__init__(self)
|
||||
|
||||
|
|
Loading…
Reference in a new issue