Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
hMatoba committed Dec 27, 2016
1 parent 2455eb1 commit 609fef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piexif/_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(self, data):
self.tiftag = app1[10:]
else:
self.tiftag = None
elif magic_number in (b"\x49\x49", b"\x4d4d"): # TIFF
elif magic_number in (b"\x49\x49", b"\x4d\x4d"): # TIFF
with open(data, 'rb') as f:
self.tiftag = f.read()
else:
Expand Down

0 comments on commit 609fef6

Please sign in to comment.