mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
When generating the report, summed changes need to be non-empty (#132).
Previoulsy, we were just checking against the changes returned from the last repository analyzed - which of course broke the whole thing if that repository had no matching commits!
This commit is contained in:
parent
9f336e63ce
commit
983d3d05bd
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class Runner(object):
|
|||
format.output_header(repos)
|
||||
outputable.output(ChangesOutput(summed_changes))
|
||||
|
||||
if changes.get_commits():
|
||||
if summed_changes.get_commits():
|
||||
outputable.output(BlameOutput(summed_changes, summed_blames))
|
||||
|
||||
if self.timeline:
|
||||
|
|
Loading…
Reference in a new issue