Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
66e5515f
Commit
66e5515f
authored
Jan 28, 2015
by
Toshio Kuratomi
Committed by
James Cammarata
Feb 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for unicode filenames for template module
Fixes #10110
parent
6b315d57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
lib/ansible/utils/template.py
+2
-1
No files found.
lib/ansible/utils/template.py
View file @
66e5515f
...
...
@@ -33,6 +33,7 @@ import ast
import
traceback
from
ansible.utils.string_functions
import
count_newlines_from_end
from
ansible.utils
import
to_bytes
class
Globals
(
object
):
...
...
@@ -272,7 +273,7 @@ def template_from_file(basedir, path, vars, vault_password=None):
managed_str
=
managed_default
.
format
(
host
=
vars
[
'template_host'
],
uid
=
vars
[
'template_uid'
],
file
=
vars
[
'template_path'
]
file
=
to_bytes
(
vars
[
'template_path'
])
)
vars
[
'ansible_managed'
]
=
time
.
strftime
(
managed_str
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment