From c3a6f848a54e475e19f9c487e26ac636a0d0749e Mon Sep 17 00:00:00 2001 From: elpatron68 Date: Sun, 28 Jul 2019 10:19:29 +0200 Subject: [PATCH] Fix KeyError: 'name' --- mumbleBot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mumbleBot.py b/mumbleBot.py index 6bd5875..59d2041 100644 --- a/mumbleBot.py +++ b/mumbleBot.py @@ -380,7 +380,7 @@ class MumbleBot: else: for s in rb_stations: stationid = s['id'] - stationname = s['name'] + stationname = s['stationname'] country = s['country'] codec = s['codec'] bitrate = s['bitrate']