summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Glüpker <git@wgmd.de>2018-01-26 00:58:21 +0100
committerAndré Glüpker <git@wgmd.de>2018-01-26 00:58:21 +0100
commit2431f3ad79bcb76320ffc500e2f7b9efcf09fe89 (patch)
tree34aec61b68d3d05120c32546661385d152166889
parent98a97bc04365db9becb1038f88e10866a829b280 (diff)
downloadsteam-2431f3ad79bcb76320ffc500e2f7b9efcf09fe89.tar.gz
steam-2431f3ad79bcb76320ffc500e2f7b9efcf09fe89.tar.bz2
steam-2431f3ad79bcb76320ffc500e2f7b9efcf09fe89.zip
Output filename on failed cache creation.
-rw-r--r--Caching.py2
1 files changed, 1 insertions, 1 deletions
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