From a1219f6db1ec93a431d9189b4d84795d5c6ab485 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Sun, 20 May 2018 15:19:45 +0300 Subject: [PATCH] print a warning to help w debugging cardset load. See https://github.com/shlomif/PySolFC/issues/83 . --- pysollib/images.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pysollib/images.py b/pysollib/images.py index 7fde0bd1..9720f1f6 100644 --- a/pysollib/images.py +++ b/pysollib/images.py @@ -86,6 +86,7 @@ class Images: # print '__loadCard:', filename f = os.path.join(self.cs.dir, filename) if not os.path.exists(f): + print('card image path %s does not exist' % (f)) return None try: img = loadImage(file=f)