From 150a7c99190ba9784f422146e8c6ace942cb08f2 Mon Sep 17 00:00:00 2001 From: Prinz23 Date: Fri, 22 Sep 2023 17:23:02 +0200 Subject: [PATCH] fix bug in pytvmaze NetworkBase --- lib/pytvmaze/tvmaze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pytvmaze/tvmaze.py b/lib/pytvmaze/tvmaze.py index 23931de5..1dd7a966 100644 --- a/lib/pytvmaze/tvmaze.py +++ b/lib/pytvmaze/tvmaze.py @@ -623,7 +623,7 @@ class NetworkBase(object): def _get_coutnry(self): c = '' if self.country: - c = ' (%s)' % self.country.name + c = ' (%s)' % self.country return c def __unicode__(self):