Skip to content

Commit

Permalink
Merge pull request #678 from jpmckinney/writerows
Browse files Browse the repository at this point in the history
Call Writer.writerow not Writer.writer.writerow from Writer.writerows
  • Loading branch information
nbedi committed Apr 28, 2017
2 parents d2bbe9e + 350772d commit 1424226
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agate/csv_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def writerow(self, row):

def writerows(self, rows):
for row in rows:
self.writer.writerow(row)
self.writerow(row)


class DictReader(csv.DictReader):
Expand Down

0 comments on commit 1424226

Please sign in to comment.