mirror of
https://github.com/FirestormViewer/phoenix-firestorm.git
synced 2026-08-14 08:53:53 +00:00
Silence the python regex warning with a raw string.
This commit is contained in:
@@ -42,7 +42,7 @@ _autobuild_env=os.environ.copy()
|
||||
# Coerce stdout encoding to utf-8 as cygwin's will be detected as cp1252 otherwise.
|
||||
_autobuild_env["PYTHONIOENCODING"] = "utf-8"
|
||||
|
||||
pkg_line=re.compile('^([\w-]+):\s+(.*)$')
|
||||
pkg_line=re.compile(r'^([\w-]+):\s+(.*)$') # <FS:Beq/> make this a raw string top avoid the warning.
|
||||
|
||||
def autobuild(*args):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user