mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
fix typo
missed a pair of parens
This commit is contained in:
parent
b16f2d8400
commit
4e49c1e991
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ def list_semod():
|
|||
semodule_versioncheck = __salt__['cmd.run']('semodule -h').splitlines()
|
||||
semodule_version = ''
|
||||
for line in versioncheck[1:]:
|
||||
if line.strip.startswith('full'):
|
||||
if line.strip().startswith('full'):
|
||||
semodule_version = 'new'
|
||||
|
||||
if semodule_version == 'new':
|
||||
|
|
Loading…
Add table
Reference in a new issue