1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix a minor typo in network_common (#25328)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2017-06-05 20:20:27 +05:30 committed by Adrian Likins
parent e28845018d
commit 38775c5363

View file

@ -87,7 +87,7 @@ class ComplexDict(object):
if attr.get('key'): if attr.get('key'):
if self._has_key: if self._has_key:
raise ValueError('only one key value can be specified') raise ValueError('only one key value can be specified')
self_has_key = True self._has_key = True
attr['required'] = True attr['required'] = True
def _dict(self, value): def _dict(self, value):