From c50d8a26dd7899a00e55e3d24b57582750e36b6e Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Fri, 15 Jun 2018 13:42:50 -0500 Subject: [PATCH] Correct win2unix typo --- tools/resources/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/resources/__init__.py b/tools/resources/__init__.py index 9ecf98bf5b..21847cc466 100644 --- a/tools/resources/__init__.py +++ b/tools/resources/__init__.py @@ -183,7 +183,7 @@ class Resources(object): def win_to_unix(self): self._win_to_unix = True for file_type in self.ALL_FILE_TYPES: - v = [f._replace(name=f.replace('\\', '/')) for + v = [f._replace(name=f.name.replace('\\', '/')) for f in self.get_file_refs(file_type)] self._file_refs[file_type] = v