We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56324c3 commit 633abcbCopy full SHA for 633abcb
src/PIL/FtexImagePlugin.py
@@ -95,7 +95,7 @@ class FtexImageFile(ImageFile.ImageFile):
95
96
def _open(self):
97
if not _accept(self.fp.read(4)):
98
- raise SyntaxError("not a FTEX file")
+ raise SyntaxError("not an FTEX file")
99
struct.unpack("<i", self.fp.read(4)) # version
100
self._size = struct.unpack("<2i", self.fp.read(8))
101
mipmap_count, format_count = struct.unpack("<2i", self.fp.read(8))
0 commit comments