From 6d5191e148311dfdee1c452bb690c6d63942ded3 Mon Sep 17 00:00:00 2001 From: DevilXD Date: Fri, 19 Aug 2022 12:54:30 +0200 Subject: [PATCH] Fix no_campaign keyerror --- twitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitch.py b/twitch.py index 8a55a01..51a9327 100644 --- a/twitch.py +++ b/twitch.py @@ -275,7 +275,7 @@ class Twitch: self.change_state(State.CHANNELS_FETCH) else: # with no games available, we switch to IDLE after cleanup - self.gui.print(_("gui", "status", "no_campaigns")) + self.gui.print(_("status", "no_campaign")) self.change_state(State.IDLE) elif self._state is State.CHANNELS_FETCH: self.gui.status.update(_("gui", "status", "gathering"))