Browse Source

Merge branch 'master' into develop

pull/1064/head
JackDandy 7 years ago
parent
commit
704d0acf5d
  1. 5
      CHANGES.md
  2. 2
      lib/tvdb_api/tvdb_api.py
  3. 2
      lib/tvdb_api_v1/tvdb_api.py

5
CHANGES.md

@ -99,6 +99,11 @@
* Change removed NZBGet 'remote' PostProcess guidance until it is verified to work
### 0.14.3 (2018-02-13 13:00:00 UTC)
Change improve thetvdb api response handling
### 0.14.2 (2018-02-07 16:00:00 UTC)
Change add handling for where requesting disk freespace is denied permission on some Linux distros

2
lib/tvdb_api/tvdb_api.py

@ -499,7 +499,7 @@ class Tvdb:
'tr': 21, 'pl': 18, 'fr': 17, 'hr': 31, 'de': 14, 'da': 10, 'fi': 11,
'hu': 19, 'ja': 25, 'he': 24, 'ko': 32, 'sv': 8, 'sl': 30}
if None is language:
if not language:
self.config['language'] = 'en'
else:
if language not in self.config['valid_languages']:

2
lib/tvdb_api_v1/tvdb_api.py

@ -488,7 +488,7 @@ class TvdbV1:
'tr': 21, 'pl': 18, 'fr': 17, 'hr': 31, 'de': 14, 'da': 10, 'fi': 11,
'hu': 19, 'ja': 25, 'he': 24, 'ko': 32, 'sv': 8, 'sl': 30}
if None is language:
if not language:
self.config['language'] = 'en'
else:
if language not in self.config['valid_languages']:

Loading…
Cancel
Save