about summary refs log tree commit diff
diff options
context:
space:
mode:
authorpjotrp2015-05-12 17:45:55 -0500
committerpjotrp2015-05-12 17:45:55 -0500
commitdb649c16e41e22b33be90d66639936699f2038ce (patch)
tree0290b14682f2448d6808da0c8678ef6f0789449e
parent799ea994a74f690cd36cbaf8d0a90ca4178f5fea (diff)
downloadgenenetwork2-db649c16e41e22b33be90d66639936699f2038ce.tar.gz
Add info to warning
-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 3eabd044..1a5c19d9 100644
--- a/wqflask/utility/tools.py
+++ b/wqflask/utility/tools.py
@@ -28,7 +28,7 @@ def get_setting(id,default,guess,get_valid_path):
             setting = guess
         path = get_valid_path(guess)
     if not path:
-        raise Exception(id+' '+setting+' path unknown or faulty (update settings.py?)')
+        raise Exception(id+' '+setting+' path unknown or faulty (update settings.py?). '+id+' should point to the root of the git repository')
 
     return path