Browse Source

[vessel] Fix pep8 issue

totalwebcasting
Jaime Marquínez Ferrándiz 9 years ago
parent
commit
c496ec0848
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/vessel.py

+ 1
- 1
youtube_dl/extractor/vessel.py View File

@ -45,7 +45,7 @@ class VesselIE(InfoExtractor):
def _check_access_rights(self, data):
access_info = data.get('__view', {})
if access_info.get('allow_access') == False:
if not access_info.get('allow_access', True):
err_code = access_info.get('error_code') or ''
if err_code == 'ITEM_PAID_ONLY':
raise ExtractorError(


Loading…
Cancel
Save