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
d50089ca
Commit
d50089ca
authored
Feb 02, 2015
by
Toshio Kuratomi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a function to change output from a str to unicode
parent
5d1e468b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
v2/ansible/utils/unicode.py
+5
-0
No files found.
v2/ansible/utils/unicode.py
View file @
d50089ca
...
...
@@ -241,3 +241,8 @@ def to_bytes(obj, encoding='utf-8', errors='replace', nonstring=None):
raise
TypeError
(
'nonstring value,
%(param)
s, is not set to a valid'
' action'
%
{
'param'
:
nonstring
})
# force the return value of a function to be unicode. Use with partial to
# ensure that a filter will return unicode values.
def
unicode_wrap
(
func
,
*
args
,
**
kwargs
):
return
to_unicode
(
func
(
*
args
,
**
kwargs
),
nonstring
=
'passthru'
)
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