From 2f5e221711735178229435c7fc08b36ea90496d8 Mon Sep 17 00:00:00 2001 From: Vassilii Khachaturov Date: Sat, 14 Dec 2013 16:01:06 +0200 Subject: [PATCH] 7290: align warning with the image_dpi fix logic --- src/ImgManip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImgManip.py b/src/ImgManip.py index 5ad3bac94..7c1e9734f 100644 --- a/src/ImgManip.py +++ b/src/ImgManip.py @@ -119,7 +119,7 @@ def image_dpi(source): except ImportError: import logging logging.warning(_("WARNING: PIL module not loaded. " - "Image cropping in report files will not be available.")) + "Image cropping in report files will be impaired.")) else: try: img = PIL.Image.open(source)