version is string and should be 2.9
This commit is contained in:
parent
6b34dc788a
commit
adcd185273
1 changed files with 2 additions and 2 deletions
|
@ -932,10 +932,10 @@ def main():
|
|||
|
||||
# Deal with deprecated aliases
|
||||
if p['state'] == 'installed':
|
||||
module.deprecate("State 'installed' is deprecated. Using state 'present' instead.", version=2.8)
|
||||
module.deprecate("State 'installed' is deprecated. Using state 'present' instead.", version="2.9")
|
||||
p['state'] = 'present'
|
||||
if p['state'] == 'removed':
|
||||
module.deprecate("State 'removed' is deprecated. Using state 'absent' instead.", version=2.8)
|
||||
module.deprecate("State 'removed' is deprecated. Using state 'absent' instead.", version="2.9")
|
||||
p['state'] = 'absent'
|
||||
|
||||
# Get the cache object
|
||||
|
|
Loading…
Reference in a new issue