mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #28537 from jfindlay/decode_state_2015.5
decode filename to utf-8 in file.recurse state
This commit is contained in:
commit
f44ed780b5
1 changed files with 1 additions and 1 deletions
|
@ -2372,7 +2372,7 @@ def recurse(name,
|
|||
manage_directory(dirname)
|
||||
vdir.add(dirname)
|
||||
|
||||
src = u'salt://{0}'.format(fn_)
|
||||
src = u'salt://{0}'.format(salt.utils.sdecode(fn_))
|
||||
manage_file(dest, src)
|
||||
|
||||
if include_empty:
|
||||
|
|
Loading…
Add table
Reference in a new issue