diff options
| -rw-r--r-- | youtube_dl/extractor/ondemandkorea.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ondemandkorea.py b/youtube_dl/extractor/ondemandkorea.py index dcd157777..0c85d549e 100644 --- a/youtube_dl/extractor/ondemandkorea.py +++ b/youtube_dl/extractor/ondemandkorea.py @@ -35,7 +35,8 @@ class OnDemandKoreaIE(InfoExtractor):          if 'msg_block_01.png' in webpage:              self.raise_geo_restricted( -                'This content is not available in your region') +                msg='This content is not available in your region', +                countries=['US', 'CA'])          if 'This video is only available to ODK PLUS members.' in webpage:              raise ExtractorError(  | 
