From d88a7b778fcebee6afabf1d939a9fd9d48853e32 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 1 Apr 2015 08:58:10 +1100 Subject: [PATCH] Added missing self argument in PyAccess --- PIL/PyAccess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/PyAccess.py b/PIL/PyAccess.py index 28829051d..a3f1c3909 100644 --- a/PIL/PyAccess.py +++ b/PIL/PyAccess.py @@ -54,7 +54,7 @@ class PyAccess(object): print (vals) self._post_init() - def _post_init(): + def _post_init(self): pass def __setitem__(self, xy, color):