diff --git a/storytracker/analysis.py b/storytracker/analysis.py index 812853a..20831f5 100644 --- a/storytracker/analysis.py +++ b/storytracker/analysis.py @@ -174,7 +174,7 @@ def write_hyperlinks_csv_to_file(self, file): longest_row = max([len(r) for r in row_list]) for i in range(longest_row - len(headers)): headers.append("image_%s_src" % (i + 1)) - + # Write it out to the file writer.writerow(headers) writer.writerows(row_list)