Skip to content

Commit

Permalink
unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
homm committed Jul 31, 2015
1 parent e37879e commit a2f121d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PIL/ImageFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def load(self):
while True:
try:
s = read(self.decodermaxblock)
except (IndexError, struct.error) as ie: # truncated png/gif
except (IndexError, struct.error): # truncated png/gif
if LOAD_TRUNCATED_IMAGES:
break
else:
Expand Down

0 comments on commit a2f121d

Please sign in to comment.