mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
fix pylint
This commit is contained in:
parent
99ec634c6b
commit
c32c1b2803
1 changed files with 1 additions and 1 deletions
|
@ -965,7 +965,7 @@ def ssh_interface(vm_):
|
|||
'ssh_interface', vm_, __opts__, default='public_ips',
|
||||
search_global=False
|
||||
)
|
||||
if not ret in ('public_ips', 'private_ips'):
|
||||
if ret not in ('public_ips', 'private_ips'):
|
||||
log.warning((
|
||||
'Invalid ssh_interface: {0}. '
|
||||
'Allowed options are ("public_ips", "private_ips"). '
|
||||
|
|
Loading…
Add table
Reference in a new issue