From 3ad70423add94de5a61fc6ee8f526ad9d0b292d7 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Thu, 23 Apr 2015 11:03:11 -0700 Subject: [PATCH] Fix typo in FliImagePlugin (seek -> _seek). --- PIL/FliImagePlugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/FliImagePlugin.py b/PIL/FliImagePlugin.py index 1acae31bf..178623951 100644 --- a/PIL/FliImagePlugin.py +++ b/PIL/FliImagePlugin.py @@ -130,7 +130,7 @@ class FliImageFile(ImageFile.ImageFile): for f in range(self.__frame + 1, frame + 1): self._seek(f) - def seek(self, frame): + def _seek(self, frame): if frame == 0: self.__frame = -1