diff options
author | André Glüpker <git@wgmd.de> | 2018-01-26 00:58:21 +0100 |
---|---|---|
committer | André Glüpker <git@wgmd.de> | 2018-01-26 00:58:21 +0100 |
commit | 2431f3ad79bcb76320ffc500e2f7b9efcf09fe89 (patch) | |
tree | 34aec61b68d3d05120c32546661385d152166889 | |
parent | 98a97bc04365db9becb1038f88e10866a829b280 (diff) | |
download | steam-2431f3ad79bcb76320ffc500e2f7b9efcf09fe89.tar.gz steam-2431f3ad79bcb76320ffc500e2f7b9efcf09fe89.tar.bz2 steam-2431f3ad79bcb76320ffc500e2f7b9efcf09fe89.zip |
Output filename on failed cache creation.
-rw-r--r-- | Caching.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |