diff options
author | Pjotr Prins | 2016-10-07 09:03:56 +0000 |
---|---|---|
committer | Pjotr Prins | 2016-10-07 09:03:56 +0000 |
commit | d3d2354abc5597cff291b587312b1316bb42d4c0 (patch) | |
tree | 44fd0b080890616ea26247ad298091e319f5a0fc /wqflask/utility/tools.py | |
parent | 9e4c8f01e1a0aa49d218f7909ed5b7979ffc6fb9 (diff) | |
download | genenetwork2-d3d2354abc5597cff291b587312b1316bb42d4c0.tar.gz |
Changed error output
Diffstat (limited to 'wqflask/utility/tools.py')
-rw-r--r-- | wqflask/utility/tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py index 5105ba42..c6d8f7d2 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -121,7 +121,7 @@ def assert_writable_dir(dir): fh.close() os.remove(fn) except IOError: - raise Exception('Unable to write to directory ' + dir ) + raise Exception('Unable to write test.txt to directory ' + dir ) return dir def mk_dir(dir): |