mirror of
https://github.com/django/django.git
synced 2025-10-29 08:36:09 +00:00
Fixed loaddata for Django checkouts with non ASCII chars in the name.
This commit is contained in:
@@ -38,7 +38,7 @@ def upath(path):
|
||||
"""
|
||||
Always return a unicode path.
|
||||
"""
|
||||
if not six.PY3:
|
||||
if not six.PY3 and not isinstance(path, six.text_type):
|
||||
return path.decode(fs_encoding)
|
||||
return path
|
||||
|
||||
|
||||
Reference in New Issue
Block a user