mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #2088 from DarkSinclair/develop
Fixing operand mismatch between dict and string in file.recurse ...
This commit is contained in:
commit
4747682bf0
1 changed files with 1 additions and 1 deletions
|
@ -1529,7 +1529,7 @@ def recurse(name,
|
|||
removed = _clean_dir(name, list(keep))
|
||||
if removed:
|
||||
ret['changes']['removed'] = removed
|
||||
ret['comment'] += 'Files cleaned from directory {0}'.format(name)
|
||||
ret['comment'] = 'Files cleaned from directory {0}'.format(name)
|
||||
return ret
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue