Merge branch 'bugfix-multiple_rows' into test-intro

This commit is contained in:
Darko Poljak 2016-04-11 17:15:35 +02:00
commit a7dbe383e4
1 changed files with 6 additions and 6 deletions

View File

@ -113,8 +113,8 @@ class Report(object):
summary_report = {}
for project in reports:
report, report_data = reports[project]
for time in report_data:
if summary:
for time in report_data:
if not time in summary_report:
summary_report[time] = report_data[time]
else: