Skip to content
Snippets Groups Projects
Commit 7f5dd051 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[utils] Raise IOError if process path is not found

parent 5794ca1d
No related branches found
No related tags found
1 merge request!194Scheduler
......@@ -44,7 +44,7 @@ def resolve_process_path():
r = os.path.join(basedir, 'process')
if not os.path.exists(r):
raise RuntimeError("Cannot find `process' at `%s' - please check " \
raise IOError("Cannot find `process' at `%s' - please check " \
"your installation" % basedir)
return r
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment