From 2098f27053167a7f89f4136af75701598c1b5625 Mon Sep 17 00:00:00 2001 From: palewire Date: Sun, 27 Jul 2014 20:38:05 -0700 Subject: [PATCH] PEP8 --- storytracker/analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)