about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPjotr Prins2016-10-07 09:03:56 +0000
committerPjotr Prins2016-10-07 09:03:56 +0000
commitd3d2354abc5597cff291b587312b1316bb42d4c0 (patch)
tree44fd0b080890616ea26247ad298091e319f5a0fc
parent9e4c8f01e1a0aa49d218f7909ed5b7979ffc6fb9 (diff)
downloadgenenetwork2-d3d2354abc5597cff291b587312b1316bb42d4c0.tar.gz
Changed error output
-rw-r--r--wqflask/utility/tools.py2
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):