diff options
| author | Ho Cheung <uioptt24@gmail.com> | 2023-12-06 19:48:22 +0800 |
|---|---|---|
| committer | Juan Ramos <114601453+juan-lunarg@users.noreply.github.com> | 2023-12-06 10:42:17 -0700 |
| commit | 1ee9eea9f1f58fe0677703eb121ae445e6513b9a (patch) | |
| tree | e4c52c3f5ac6a59ad2caea943e0772b698dae2e2 /scripts | |
| parent | 67cda9672b97daa9a3eb6d74639e5d87dd6ef463 (diff) | |
| download | usermoji-1ee9eea9f1f58fe0677703eb121ae445e6513b9a.tar.xz | |
gn: Fix Python 3.12 compatibility
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/gn/generate_vulkan_icd_json.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gn/generate_vulkan_icd_json.py b/scripts/gn/generate_vulkan_icd_json.py index 498bc07e..467ba616 100755 --- a/scripts/gn/generate_vulkan_icd_json.py +++ b/scripts/gn/generate_vulkan_icd_json.py @@ -28,7 +28,7 @@ import platform import sys def glob_slash(dirname): - """Like regular glob but replaces \ with / in returned paths.""" + r"""Like regular glob but replaces \ with / in returned paths.""" return [s.replace('\\', '/') for s in glob.glob(dirname)] def main(): |
