From 4b8f8de1437efd267fafca3166a8e6f902aa3ace Mon Sep 17 00:00:00 2001 From: Watchful1 Date: Sun, 13 Dec 2020 13:38:26 -0800 Subject: [PATCH] Forgot to fix saving of the tags back to a string --- pointsbot/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pointsbot/config.py b/pointsbot/config.py index 7a63b0d..15a8233 100644 --- a/pointsbot/config.py +++ b/pointsbot/config.py @@ -123,6 +123,8 @@ class Config: 'flair_template_id': level.flair_template_id, }) + obj['tags'] = ','.join(obj['tags']) + with open(self._filepath, 'w') as f: toml.dump(obj, f)