Merge pull request #281 from kustodian/postgresql_db_fix_for_python_24_checkmode
Fixed postgresql_db failing on Python 2.4 with --check
This commit is contained in:
commit
b0c94cd6f6
1 changed files with 3 additions and 0 deletions
|
@ -311,6 +311,9 @@ def main():
|
|||
module.fail_json(msg=str(e))
|
||||
except NotSupportedError, e:
|
||||
module.fail_json(msg=str(e))
|
||||
except SystemExit:
|
||||
# Avoid catching this on Python 2.4
|
||||
raise
|
||||
except Exception, e:
|
||||
module.fail_json(msg="Database query failed: %s" % e)
|
||||
|
||||
|
|
Loading…
Reference in a new issue