1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 11:09:32 +00:00

Proper warning if xml.etree.ElementTree is not available

This commit is contained in:
Philipp Hagemeister 2011-09-15 09:59:03 +02:00
parent c23cec29a3
commit afb5b55de6

View file

@ -66,8 +66,8 @@ except ImportError:
try:
import xml.etree.ElementTree
except ImportError: # Python<2.5
pass # Not officially supported, but let it slip
except ImportError: # Python<2.5: Not officially supported, but let it slip
warnings.warn('xml.etree.ElementTree support is missing. Consider upgrading to Python >= 2.5 if you get related errors.')
std_headers = {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:5.0.1) Gecko/20100101 Firefox/5.0.1',