diff --git a/Lib/ufoLib/filesystem.py b/Lib/ufoLib/filesystem.py index 34e626929..ad6a2414e 100644 --- a/Lib/ufoLib/filesystem.py +++ b/Lib/ufoLib/filesystem.py @@ -75,7 +75,7 @@ class FileSystem(object): path = ZipFS( path, write=True if mode == 'w' else False, encoding="utf8") roots = [ - p for p in path.listdir("") + p for p in path.listdir(u"") # exclude macOS metadata contained in zip file if path.isdir(p) and p != "__MACOSX" ]