mirror of
https://github.com/valitydev/salt.git
synced 2024-11-09 01:36:48 +00:00
Merge pull request #2367 from UtahDave/develop
Fixes #2325 Remove extra spaces before comparison
This commit is contained in:
commit
b1e1a90ac0
@ -113,7 +113,7 @@ def present(name,
|
||||
The information to be set in the day of day of week section. Default is
|
||||
``*``
|
||||
'''
|
||||
name = name.strip()
|
||||
name = ' '.join(name.strip().split())
|
||||
ret = {'changes': {},
|
||||
'comment': '',
|
||||
'name': name,
|
||||
|
Loading…
Reference in New Issue
Block a user