mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed call to module.log
This commit is contained in:
parent
f475a123c0
commit
4e72c23bae
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ class OVSPort(object):
|
||||||
|
|
||||||
def set(self, set_opt):
|
def set(self, set_opt):
|
||||||
""" Set attributes on a port. """
|
""" Set attributes on a port. """
|
||||||
self.module("set called %s" % set_opt)
|
self.module.log("set called %s" % set_opt)
|
||||||
if (not set_opt):
|
if (not set_opt):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue