mysql_db: use new exception handling, fixes build (#4373)
This commit is contained in:
parent
9549883e78
commit
03022875c4
1 changed files with 4 additions and 3 deletions
|
@ -366,7 +366,8 @@ def main():
|
||||||
module.fail_json(msg="%s" % stderr)
|
module.fail_json(msg="%s" % stderr)
|
||||||
else:
|
else:
|
||||||
module.exit_json(changed=True, db=db, msg=stdout)
|
module.exit_json(changed=True, db=db, msg=stdout)
|
||||||
except Exception, e:
|
except Exception:
|
||||||
|
e = get_exception()
|
||||||
module.fail_json(msg="error creating database: " + str(e))
|
module.fail_json(msg="error creating database: " + str(e))
|
||||||
|
|
||||||
elif state == "absent":
|
elif state == "absent":
|
||||||
|
|
Loading…
Reference in a new issue