Add missing colon in if statement

This commit is contained in:
Mike Place 2017-08-17 15:57:42 -06:00 committed by GitHub
parent 822eabcc81
commit fc306fc8c3

View file

@ -451,7 +451,7 @@ def get_job_config(name=None):
server = _connect()
if not job_exists(name)
if not job_exists(name):
raise CommandExecutionError('Job \'{0}\' does not exist'.format(name))
job_info = server.get_job_config(name)