fix pep8 issue in consul_kv.py (#32310)

This commit is contained in:
nilhase25 2017-10-30 10:37:52 +00:00 committed by Dag Wieers
commit 9cff2c376b
2 changed files with 4 additions and 3 deletions

View file

@ -240,10 +240,12 @@ def get_consul_api(module, token=None):
verify=module.params.get('validate_certs'),
token=module.params.get('token'))
def test_dependencies(module):
if not python_consul_installed:
module.fail_json(msg="python-consul required for this module. "\
"see http://python-consul.readthedocs.org/en/latest/#installation")
module.fail_json(msg="python-consul required for this module. "
"see http://python-consul.readthedocs.org/en/latest/#installation")
def main():