Skip to content

Commit b90dfda

Browse files
Fix SyntaxWarning in rezconfig.py
The \ in the string literal was generating the following warning every time the file was parsed: SyntaxWarning: invalid escape sequence '\ ' This commit uses a raw string literal to avoid interpretation of backslashes. Signed-off-by: Luc Touraille <touraill@adobe.com>
1 parent 6f5bcdb commit b90dfda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rez/rezconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright Contributors to the Rez Project
33

44

5-
"""
5+
r"""
66
Rez configuration settings. Do not change this file.
77
88
Settings are determined in the following way (higher number means higher

0 commit comments

Comments
 (0)