Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
hMatoba committed May 14, 2016
1 parent cd315d4 commit 7c4783f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piexif/_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_exif_seg(segments):
"""Returns Exif from JPEG meta data list
"""
for seg in segments:
if seg[0:2] == b"\xff\xe1" and sef[4:10] == b"Exif\x00\x00":
if seg[0:2] == b"\xff\xe1" and seg[4:10] == b"Exif\x00\x00":
return seg
return None

Expand Down

0 comments on commit 7c4783f

Please sign in to comment.