|
@@ -70,7 +70,7 @@ def _reclient_rbe_project():
|
|
return ""
|
|
return ""
|
|
with open(reproxy_cfg_path) as f:
|
|
with open(reproxy_cfg_path) as f:
|
|
for line in f:
|
|
for line in f:
|
|
- m = re.match('instance\s*=\s*projects/([^/]*)/instances/.*', line)
|
|
|
|
|
|
+ m = re.match(r'instance\s*=\s*projects/([^/]*)/instances/.*', line)
|
|
if m:
|
|
if m:
|
|
return m[1]
|
|
return m[1]
|
|
return ""
|
|
return ""
|
|
@@ -89,7 +89,7 @@ def _siso_rbe_project():
|
|
return ""
|
|
return ""
|
|
with open(sisoenv_path) as f:
|
|
with open(sisoenv_path) as f:
|
|
for line in f:
|
|
for line in f:
|
|
- m = re.match('SISO_PROJECT=\s*(\S*)\s*', line)
|
|
|
|
|
|
+ m = re.match(r'SISO_PROJECT=\s*(\S*)\s*', line)
|
|
if m:
|
|
if m:
|
|
return m[1]
|
|
return m[1]
|
|
return ""
|
|
return ""
|