Merge branch 'hotfix/3.29.11'

This commit is contained in:
JackDandy 2023-09-22 23:06:26 +01:00
commit 424841f65a
3 changed files with 19 additions and 10 deletions

View file

@ -1,22 +1,25 @@
#### Branch: The name of the branch (e.g. master or develop)
#### Branch: Insert the name of the branch (e.g. main or dev)
#### Branch version commit hash: (See the About page)
Expectation | Result
------------ | -------------
Your expectation paragraph(s) text here. Before the bar >> | then, your result paragraph(s) text here.
Insert your expectation text here (one line) before the bar -> | <- after the bar, your result text here
**Steps to reproduce:**
*1)* Step to take
*2)* Step to take
...
... etc.
Either a link to gist (best as they are easily deleted) or log text wrapped in "pre" tags
```
paste log text here or even better, a link to a Github Gist (using menu `[+]`) (best as easily removed)
```
Additional notes:
For example, any relevant config settings that may be help us replicate the reported issue
Targeting your info so that the issue can be reproduced is the single fastest way to get it resolved
Good info helps replicate the issue and is the fastest way to get it resolved

View file

@ -1,4 +1,10 @@
### 3.29.10 (2023-09-19 12:55:00 UTC)
### 3.29.11 (2023-09-22 23:00:00 UTC)
* Fix pytvmaze country handling in NetworkBase
* Update issue template
### 3.29.10 (2023-09-19 12:55:00 UTC)
* Fix Metacritic cards
* Fix Linux CI tests

View file

@ -620,17 +620,17 @@ class NetworkBase(object):
self.timezone = None
self.code = None
def _get_coutnry(self):
def _get_country(self):
c = ''
if self.country:
c = ' (%s)' % self.country.name
c = ' (%s)' % self.country
return c
def __unicode__(self):
return '%s%s' % (self.name, self._get_coutnry())
return '%s%s' % (self.name, self._get_country())
def __str__(self):
return _valid_encoding('%s%s' % (self.name, self._get_coutnry()))
return _valid_encoding('%s%s' % (self.name, self._get_country()))
class Network(NetworkBase):