From 5019081410c3585c44a47e76cb2415e17417b4aa Mon Sep 17 00:00:00 2001 From: Philipp Spitzer Date: Sun, 13 Mar 2022 17:31:53 +0100 Subject: [PATCH] Fix support for walkup_support comment. --- bots/sledrun_wikitext_to_json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/sledrun_wikitext_to_json.py b/bots/sledrun_wikitext_to_json.py index 27d3f68..d6e970f 100644 --- a/bots/sledrun_wikitext_to_json.py +++ b/bots/sledrun_wikitext_to_json.py @@ -163,7 +163,7 @@ class SledrunWikiTextToJsonBot( for walkup_support_type, comment in walkup_support_rbb: walkup_support = {'type': walkup_support_type} if comment is not None: - walkup_support['comment']: comment + walkup_support['comment'] = comment walkup_supports.append(walkup_support) sledrun_json['walkup_supports'] = walkup_supports _walkup_support() -- 2.39.5