Double space to single space after period in card text. (#152)

This commit is contained in:
Dave 2017-09-12 04:38:54 -05:00 committed by tooomm
parent 2f5ccb4887
commit 93b65146ec

View File

@ -205,7 +205,7 @@ def parse_mtgs(mtgs, manual_cards=[], card_corrections=[], delete_cards=[], rela
if subtypes:
cardjson['subtypes'] = subtypes
cardjson["rarity"] = card['rarity']
cardjson["text"] = card['rules']
cardjson["text"] = card['rules'].replace(". ",". ")
cardjson["type"] = card['type']
workingtypes = card['type']