Forgot to fix saving of the tags back to a string

This commit is contained in:
Watchful1
2020-12-13 13:38:26 -08:00
parent 932d803e2c
commit 4b8f8de143

View File

@@ -123,6 +123,8 @@ class Config:
'flair_template_id': level.flair_template_id, 'flair_template_id': level.flair_template_id,
}) })
obj['tags'] = ','.join(obj['tags'])
with open(self._filepath, 'w') as f: with open(self._filepath, 'w') as f:
toml.dump(obj, f) toml.dump(obj, f)