fix unicode bug

This commit is contained in:
Oran Nadler 2018-04-02 01:47:15 -07:00
parent 225c7fae6f
commit ac8f218586
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ def _cast_by_example(value, example):
"""
example_type = type(example)
if example_type is str:
return str(os.path.expandvars(value))
return os.path.expandvars(value).encode("utf8")
elif example_type is tuple and len(example) != 0:
if value is None or value == tuple(None):
return tuple()