Skip to content

Commit

Permalink
[2016.3] Pylint fix (#39202)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole Thomas committed Feb 6, 2017
1 parent ab76054 commit 7bed687
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions salt/modules/win_ip.py
Expand Up @@ -76,7 +76,7 @@ def _interface_configs():
current_ip_list.append(val)

elif 'ip address' in lkey:
current_iface.setdefault('ip_addrs', []).append({key:val})
current_iface.setdefault('ip_addrs', []).append({key: val})

elif 'subnet prefix' in lkey:
subnet, _, netmask = val.split(' ', 2)
Expand All @@ -90,7 +90,6 @@ def _interface_configs():
return ret



def raw_interface_configs():
'''
Return raw configs for all interfaces
Expand Down

0 comments on commit 7bed687

Please sign in to comment.