mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix join syntax
This commit is contained in:
parent
ac8610d523
commit
6c5bd7664b
1 changed files with 1 additions and 1 deletions
|
@ -873,7 +873,7 @@ def _windows_platform_data():
|
|||
osrelease = server[osrelease]
|
||||
|
||||
if info['ServicePackMajor'] > 0:
|
||||
service_pack = ''.join('SP', info['ServicePackMajor'])
|
||||
service_pack = ''.join(['SP', info['ServicePackMajor']])
|
||||
osrelease = ' '.join([osrelease, service_pack])
|
||||
|
||||
grains = {
|
||||
|
|
Loading…
Add table
Reference in a new issue