diff --git a/unicodecsv/py2.py b/unicodecsv/py2.py index f436397..f5299ae 100644 --- a/unicodecsv/py2.py +++ b/unicodecsv/py2.py @@ -86,8 +86,9 @@ def writerow(self, row): _stringify_list(row, self.encoding, self.encoding_errors)) def writerows(self, rows): + rows = _stringify_list(rows, self.encoding, self.encoding_errors) for row in rows: - self.writerow(row) + self.writer.writerow(row) @property def dialect(self):