diff options
author | pjotrp | 2015-05-12 17:45:55 -0500 |
---|---|---|
committer | pjotrp | 2015-05-12 17:45:55 -0500 |
commit | db649c16e41e22b33be90d66639936699f2038ce (patch) | |
tree | 0290b14682f2448d6808da0c8678ef6f0789449e /wqflask/utility | |
parent | 799ea994a74f690cd36cbaf8d0a90ca4178f5fea (diff) | |
download | genenetwork2-db649c16e41e22b33be90d66639936699f2038ce.tar.gz |
Add info to warning
Diffstat (limited to 'wqflask/utility')
-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 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 |