1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-09 21:39:38 +00:00

[nrk] fix typo

This commit is contained in:
Remita Amine 2020-12-04 18:05:27 +01:00
parent 5e95e18ce9
commit 957c65b9ea

View file

@ -365,7 +365,7 @@ class NRKTVIE(NRKBaseIE):
} }
message_type = data.get('messageType', '') message_type = data.get('messageType', '')
# Can be ProgramIsGeoBlocked or ChannelIsGeoBlocked* # Can be ProgramIsGeoBlocked or ChannelIsGeoBlocked*
if 'IsGeoBlocked' in message_type or try_get(data, lambda x: x['usageRights']['isGeoBlocked']) is Trues: if 'IsGeoBlocked' in message_type or try_get(data, lambda x: x['usageRights']['isGeoBlocked']) is True:
self.raise_geo_restricted( self.raise_geo_restricted(
msg=MESSAGES.get('ProgramIsGeoBlocked'), msg=MESSAGES.get('ProgramIsGeoBlocked'),
countries=self._GEO_COUNTRIES) countries=self._GEO_COUNTRIES)