Merge pull request #2088 from DarkSinclair/develop

Fixing operand mismatch between dict and string in file.recurse ...
This commit is contained in:
Thomas S Hatch 2012-09-25 10:22:35 -07:00
commit 4747682bf0

View file

@ -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