mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Make openvswitch* pass py3 sanity check
This commit is contained in:
committed by
Matt Clay
parent
2a83eefaae
commit
7f4fdba0c6
@@ -143,7 +143,8 @@ class OVSBridge(object):
|
||||
changed = True
|
||||
elif self.state == 'present' and not self.exists():
|
||||
changed = True
|
||||
except Exception, earg:
|
||||
except Exception:
|
||||
earg = get_exception()
|
||||
self.module.fail_json(msg=str(earg))
|
||||
|
||||
# pylint: enable=W0703
|
||||
@@ -189,7 +190,8 @@ class OVSBridge(object):
|
||||
self.set_external_id(key, None)):
|
||||
changed = True
|
||||
|
||||
except Exception, earg:
|
||||
except Exception:
|
||||
earg = get_exception()
|
||||
self.module.fail_json(msg=str(earg))
|
||||
# pylint: enable=W0703
|
||||
self.module.exit_json(changed=changed)
|
||||
@@ -267,4 +269,5 @@ def main():
|
||||
|
||||
# import module snippets
|
||||
from ansible.module_utils.basic import *
|
||||
from ansible.module_utils.pycompat24 import get_exception
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user