From e7a5cb4b1dcc4d354e664fa12e409559a92e3e5e Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Sun, 12 Feb 2017 12:21:57 -0800 Subject: [PATCH] Don't show both messages if we don't have the zip files --- gui/bitmapLoader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/bitmapLoader.py b/gui/bitmapLoader.py index 9ebfab114..05e3725f5 100644 --- a/gui/bitmapLoader.py +++ b/gui/bitmapLoader.py @@ -38,8 +38,8 @@ except ImportError: class BitmapLoader(object): try: - logging.info("Using zipped image files.") archive = zipfile.ZipFile(config.getPyfaPath('imgs.zip'), 'r') + logging.info("Using zipped image files.") except IOError: logging.info("Using local image files.") archive = None