mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add missing colon in if
statement
This commit is contained in:
parent
822eabcc81
commit
fc306fc8c3
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue