mirror of
https://github.com/valitydev/salt.git
synced 2024-11-09 01:36:48 +00:00
Fix anomalous backslash.
This commit is contained in:
parent
f7054177b4
commit
7758669123
@ -836,7 +836,7 @@ def group_list():
|
||||
else:
|
||||
line = out[idx].strip()
|
||||
try:
|
||||
name, lang = re.match('(.+) \[(.+)\]', line).groups()
|
||||
name, lang = re.match(r'(.+) \[(.+)\]', line).groups()
|
||||
except AttributeError:
|
||||
pass
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user