Fix anomalous backslash.

This commit is contained in:
Pedro Algarvio 2014-01-11 13:08:32 +00:00
parent f7054177b4
commit 7758669123

View File

@ -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: