Skip to content

Commit

Permalink
Merge pull request #1 from radarhere/unpack
Browse files Browse the repository at this point in the history
Fixed lint error
  • Loading branch information
paddywwoof authored Aug 4, 2019
2 parents 9c7d3a0 + fab3880 commit a780a51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/PIL/TiffImagePlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,9 @@ def load(self, fp):
fp.seek(offset)
except OverflowError as e:
if DEBUG:
print("- offset value wrong. Possibly corrupt EXIF data. ", e)
print(
"- offset value wrong. Possibly corrupt EXIF data. ", e
)
continue # ignore corrupt EXIF data
data = ImageFile._safe_read(fp, size)
fp.seek(here)
Expand Down

0 comments on commit a780a51

Please sign in to comment.