Skip to content

Commit 33a91b1

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.
1 parent 6f5bcdb commit 33a91b1

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)