From e027fea75f5fb7432eb8b77bf4dd1f2918e32a3d Mon Sep 17 00:00:00 2001 From: cottongin Date: Fri, 4 Jan 2019 15:43:44 -0600 Subject: [PATCH] fixes bug with --country in tvshow command --- plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin.py b/plugin.py index 3779d34..2e68e62 100644 --- a/plugin.py +++ b/plugin.py @@ -120,6 +120,7 @@ class TVMaze(callbacks.Plugin): # if we have a country, look for that first instead of the first result if country: + show_id = None for show in show_search: if show['show'].get('network'): if show['show']['network']['country']['code'].upper() == country.upper():