diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-02-14 14:02:12 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-02-14 14:02:12 +0600 |
commit | e76394f36cdff2f701af7c2420b812e7ea045098 (patch) | |
tree | 2b0248f2e19052b7cd6d0a825b33eb61c00422b6 /youtube_dl | |
parent | 080e09557d0c323a9abf5f72e9d307f8bb545be6 (diff) |
[globo] Switch to new-style classes
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/globo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/globo.py b/youtube_dl/extractor/globo.py index b241c4868..3de8356f6 100644 --- a/youtube_dl/extractor/globo.py +++ b/youtube_dl/extractor/globo.py @@ -65,7 +65,7 @@ class GloboIE(InfoExtractor): 'only_matching': True, }] - class MD5: + class MD5(object): HEX_FORMAT_LOWERCASE = 0 HEX_FORMAT_UPPERCASE = 1 BASE64_PAD_CHARACTER_DEFAULT_COMPLIANCE = '' |