catch -> except

This commit is contained in:
Matthew Jones 2014-10-01 13:07:40 -04:00
parent 786cc3fa85
commit 25f8034b79

View File

@ -449,7 +449,7 @@ class Job(UnifiedJob, JobOptions):
return
try:
evars = json.loads(self.extra_vars)
catch Exception, e:
except Exception, e:
return
evars.update(extra_data)
self.update_fields(extra_vars=json.dumps(evars))