From 6606d8b13ce13bba91491bf1852acf9aa54c6ffe Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Thu, 29 Oct 2015 03:17:26 +0100 Subject: [PATCH] Progress from the blame module is now printed regardless of --hard. --- gitinspector/blame.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gitinspector/blame.py b/gitinspector/blame.py index 4fe31aa..e459824 100644 --- a/gitinspector/blame.py +++ b/gitinspector/blame.py @@ -141,9 +141,7 @@ class Blame(object): thread = BlameThread(useweeks, changes, blame_command, FileDiff.get_extension(row), self.blames, row.strip()) thread.daemon = True thread.start() - - if hard: - Blame.output_progress(i, len(lines)) + Blame.output_progress(i, len(lines)) # Make sure all threads have completed. for i in range(0, NUM_THREADS):