diff options
Diffstat (limited to 'library/python/runtime_py3')
| -rw-r--r-- | library/python/runtime_py3/importer.pxi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/runtime_py3/importer.pxi b/library/python/runtime_py3/importer.pxi index 904f94dea2b..e352bced500 100644 --- a/library/python/runtime_py3/importer.pxi +++ b/library/python/runtime_py3/importer.pxi @@ -234,7 +234,7 @@ class ResourceImporter(object): abspath = resfs_resolve(path) if abspath: return file_bytes(abspath) - path = path.replace(_b('\\'), _b('/')) + path = path.replace(_b('\\'), _b('/')) data = resfs_read(path, builtin=True) if data is None: raise IOError(path) # Y_PYTHON_ENTRY_POINT=:resource_files |
