diff options
| author | Petr Vaněk <arkamar@atlas.cz> | 2022-02-12 15:27:10 +0100 |
|---|---|---|
| committer | dirkf <fieldhouse@gmx.net> | 2022-02-14 07:07:05 +0000 |
| commit | bf23bc0489cf304b2a8ab756f2f63b2cfa5586fe (patch) | |
| tree | 3ad745db71932d5a419d4c4c99ba31ea60eafd69 | |
| parent | 85bf26c1d01f94b83476703e5c70022f01164ccf (diff) | |
add missing __future__ import unicode_literals
| -rw-r--r-- | youtube_dl/extractor/streamcz.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/streamcz.py b/youtube_dl/extractor/streamcz.py index 179bdcaba..060ba32e0 100644 --- a/youtube_dl/extractor/streamcz.py +++ b/youtube_dl/extractor/streamcz.py @@ -1,4 +1,6 @@ # coding: utf-8 +from __future__ import unicode_literals + import json import re |
