[StreamMe] Fix "invalid escape sequences" error on Python 3.6 as in #11581

This commit is contained in:
sh!zeeg 2017-01-02 21:05:33 +03:00
parent 20910f945b
commit fcc3b98dd4

View File

@ -25,7 +25,7 @@ class StreamMeIE(InfoExtractor):
'uploader': 'KombatCup', 'uploader': 'KombatCup',
'uploader_id': 'kombatcup', 'uploader_id': 'kombatcup',
'timestamp': 1481512102000, 'timestamp': 1481512102000,
'thumbnail': 're:https?://.*.jpg$', 'thumbnail': r're:https?://.*\.jpg$',
'age_limit': 13, 'age_limit': 13,
} }
} }
@ -115,13 +115,13 @@ class StreamMeLiveIE(StreamMeIE):
'info_dict': { 'info_dict': {
'id': '1246a915-eebe-4ffe-b12e-e4f5332abc4d', 'id': '1246a915-eebe-4ffe-b12e-e4f5332abc4d',
'ext': 'mp4', 'ext': 'mp4',
'title': 'KombatCup\'s Live Stream', 'title': "KombatCup's Live Stream",
'age_limit': 13, 'age_limit': 13,
'uploader_id': 'kombatcup', 'uploader_id': 'kombatcup',
'uploader': 'KombatCup', 'uploader': 'KombatCup',
'like_count': int, 'like_count': int,
'dislike_count': int, 'dislike_count': int,
'thumbnail': 're:https?://.*.jpg$', 'thumbnail': r're:https?://.*\.jpg$',
'is_live': True, 'is_live': True,
}, },
'skip': 'kombatcup is offline', 'skip': 'kombatcup is offline',