diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2012-11-28 00:09:17 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-11-28 00:09:17 +0100 |
commit | 03f9daab34605f538294fdffb141ef5d9fc670e6 (patch) | |
tree | 439c54799355ebef2d5e3e4face41b33cea14521 /youtube_dl/InfoExtractors.py | |
parent | a8156c1d2e4b2a7ac5e034c247c6fccaca15a21d (diff) |
Use io.BytesIO instead of StringIO
Diffstat (limited to 'youtube_dl/InfoExtractors.py')
-rw-r--r-- | youtube_dl/InfoExtractors.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 28731b895..3ddaddd7f 100644 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -2,7 +2,6 @@ # -*- coding: utf-8 -*- import datetime -import HTMLParser import httplib import netrc import os @@ -15,11 +14,6 @@ import random import math from urlparse import parse_qs -try: - import cStringIO as StringIO -except ImportError: - import StringIO - from utils import * |