From fd0abc250d8b19399ff2c22e47cfe39e5a85c70f Mon Sep 17 00:00:00 2001 From: Toby Harradine Date: Sun, 7 Oct 2018 19:33:04 +1100 Subject: [PATCH] [Audio] Fix type mismatch between config defaults and set value (#2201) current_build is now set as a dict, but its default was a list. This resolves the error an `[p]audioset settings`. Signed-off-by: Toby Harradine --- redbot/cogs/audio/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/audio/audio.py b/redbot/cogs/audio/audio.py index ff9e86785..9984f841d 100644 --- a/redbot/cogs/audio/audio.py +++ b/redbot/cogs/audio/audio.py @@ -48,7 +48,7 @@ class Audio(commands.Cog): "ws_port": "2332", "password": "youshallnotpass", "status": False, - "current_build": [3, 0, 0, "alpha", 0], + "current_build": redbot.core.VersionInfo.from_str("3.0.0a0").to_json(), "use_external_lavalink": False, }