Use ElementTree instead of deprecated cElementTree.

This commit is contained in:
Karthikeyan Singaravelan 2020-07-15 12:41:40 +00:00
parent 9b6c53d077
commit 0cf8158005

View File

@ -6,7 +6,7 @@
__all__ = ['ckplayer_download']
from xml.etree import cElementTree as ET
from xml.etree import ElementTree as ET
from copy import copy
from ..common import *
#----------------------------------------------------------------------