Skip to content

Commit

Permalink
Fix encoding problem in print
Browse files Browse the repository at this point in the history
  • Loading branch information
G.Tjebbes committed Aug 27, 2015
1 parent f998442 commit ed38362
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='sqla_inspect',
version='0.1.8',
version='0.1.9',
packages=['sqla_inspect'],
include_package_data=True,
license='GPLv3',
Expand Down
1 change: 0 additions & 1 deletion sqla_inspect/excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ def _render_rows(self):
row_number = index + 2
for col_num, value in enumerate(row):
cell = self.worksheet.cell(row=row_number, column=col_num + 1)
print("Writing a cell with the following value : %s" % value)
cell.value = value

def _render_headers(self):
Expand Down

0 comments on commit ed38362

Please sign in to comment.