Commit 961085b8 by btimby

After testing, there is no unicode in six module. six.text_type represents…

After testing, there is no unicode in six module. six.text_type represents unicode in py2 and str in py3.
parent a93139a2
...@@ -28,7 +28,8 @@ from fs.osfs import OSFS ...@@ -28,7 +28,8 @@ from fs.osfs import OSFS
from fs.errors import convert_fs_errors from fs.errors import convert_fs_errors
from fs import iotools from fs import iotools
from six import unicode from six import text_type as unicode
# Get these once so we can reuse them: # Get these once so we can reuse them:
UID = os.getuid() UID = os.getuid()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment