Skip to content

Commit

Permalink
Add test compatibility with python3
Browse files Browse the repository at this point in the history
  • Loading branch information
jonadem committed Jul 25, 2017
1 parent 836e1fa commit c427ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyexcel_odsr/messyods.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def __init__(self, fileobj, window=None, **kw):

self.window = window

self.content = open(fileobj, 'r').read()
self.content = open(fileobj, 'rb').read()

def make_tables(self):
"""
Expand Down

0 comments on commit c427ba9

Please sign in to comment.