Merge branch 'master' into develop

This commit is contained in:
JackDandy 2018-02-13 13:04:53 +00:00
commit 704d0acf5d
3 changed files with 7 additions and 2 deletions

View file

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

View file

@ -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']:

View file

@ -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']: