Skip to content
This repository has been archived by the owner on Dec 28, 2020. It is now read-only.

Commit

Permalink
PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Jul 28, 2014
1 parent 3404c81 commit 2098f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storytracker/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2098f27

Please sign in to comment.