Use io.BytesIO instead of StringIO

This commit is contained in:
Philipp Hagemeister 2012-11-28 00:09:17 +01:00
parent a8156c1d2e
commit 03f9daab34
2 changed files with 3 additions and 13 deletions

View file

@ -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 *