From: Jaime Marquínez Ferrándiz Date: Tue, 2 Feb 2016 21:30:13 +0000 (+0100) Subject: [utils] dfxp2srt: make TTMLPElementParser inherit from object X-Git-Tag: 2021.01.07~6548 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/87de7069b90a5154c8fb625510891cf3fff6f713 [utils] dfxp2srt: make TTMLPElementParser inherit from object For consistency between python 2 and 3. --- diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 18dbe28bb..4262ad6ac 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -2017,7 +2017,7 @@ def dfxp2srt(dfxp_data): 'ttaf1': 'http://www.w3.org/2006/10/ttaf1', }) - class TTMLPElementParser: + class TTMLPElementParser(object): out = '' def start(self, tag, attrib):