imports from osgameclones

This commit is contained in:
Trilarion
2019-08-31 00:22:31 +02:00
parent 22e36424d7
commit 4784e48c53
55 changed files with 1081 additions and 144 deletions

View File

@ -104,8 +104,8 @@ def parse_entry(content):
# remove parenthesis with content
v = re.sub(r'\([^)]*\)', '', v)
# split on ','
v = v.split(',')
# split on ', '
v = v.split(', ')
# strip
v = [x.strip() for x in v]