mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-28 11:59:09 -07:00
Make consul modules pass sanity test for python 3
This commit is contained in:
parent
d4157095f3
commit
2a83eefaae
5 changed files with 18 additions and 22 deletions
|
@ -145,7 +145,7 @@ try:
|
|||
import consul
|
||||
from requests.exceptions import ConnectionError
|
||||
python_consul_installed = True
|
||||
except ImportError, e:
|
||||
except ImportError:
|
||||
python_consul_installed = False
|
||||
|
||||
from requests.exceptions import ConnectionError
|
||||
|
@ -276,10 +276,10 @@ def main():
|
|||
|
||||
try:
|
||||
execute(module)
|
||||
except ConnectionError, e:
|
||||
except ConnectionError as e:
|
||||
module.fail_json(msg='Could not connect to consul agent at %s:%s, error was %s' % (
|
||||
module.params.get('host'), module.params.get('port'), str(e)))
|
||||
except Exception, e:
|
||||
except Exception as e:
|
||||
module.fail_json(msg=str(e))
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue