fix bug in pytvmaze NetworkBase

This commit is contained in:
Prinz23 2023-09-22 17:23:02 +02:00 committed by JackDandy
parent b95da07dc9
commit 150a7c9919

View file

@ -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):