From 2431f3ad79bcb76320ffc500e2f7b9efcf09fe89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Gl=C3=BCpker?= Date: Fri, 26 Jan 2018 00:58:21 +0100 Subject: Output filename on failed cache creation. --- Caching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Caching.py b/Caching.py index a048af2..7eee817 100644 --- a/Caching.py +++ b/Caching.py @@ -32,7 +32,7 @@ class Caching(): with open(complete, 'wt') as cachefile: cachefile.write(content) except: - print('Could not create cache file/dir.') + print('Could not create cache file/dir "%s".' % complete) return False return True -- cgit v1.2.3