diff options
Diffstat (limited to 'youtube_dl/extractor/vgtv.py')
| -rw-r--r-- | youtube_dl/extractor/vgtv.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vgtv.py b/youtube_dl/extractor/vgtv.py index 8a574bc26..1709fd6bb 100644 --- a/youtube_dl/extractor/vgtv.py +++ b/youtube_dl/extractor/vgtv.py @@ -14,6 +14,7 @@ from ..utils import (  class VGTVIE(XstreamIE):      IE_DESC = 'VGTV, BTTV, FTV, Aftenposten and Aftonbladet' +    _BYPASS_GEO = False      _HOST_TO_APPNAME = {          'vgtv.no': 'vgtv', @@ -217,7 +218,7 @@ class VGTVIE(XstreamIE):              properties = try_get(                  data, lambda x: x['streamConfiguration']['properties'], list)              if properties and 'geoblocked' in properties: -                raise self.raise_geo_restricted() +                raise self.raise_geo_restricted(countries=['NO'])          self._sort_formats(info['formats'])  | 
