From fd77bcd5a74ff8525fcc7d3fc2df6782d34e0ef9 Mon Sep 17 00:00:00 2001 From: Hugo Date: Thu, 2 Oct 2014 12:43:49 +0300 Subject: [PATCH] Fix rename regression --- PIL/ImageCms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PIL/ImageCms.py b/PIL/ImageCms.py index fbc9fab12..ed219f7ba 100644 --- a/PIL/ImageCms.py +++ b/PIL/ImageCms.py @@ -90,8 +90,8 @@ try: except ImportError as ex: # Allow error import for doc purposes, but error out when accessing # anything in core. - from _util import import_err - _imagingcms = import_err(ex) + from _util import deferred_error + _imagingcms = deferred_error(ex) from PIL._util import isStringType core = _imagingcms