Merge branch 'migrate_from_pil_to_pillow' of https://github.com/Kami/mitmproxy into Kami-migrate_from_pil_to_pillow

Conflicts:
	requirements.txt
This commit is contained in:
Aldo Cortesi
2014-01-05 11:15:27 +13:00
4 changed files with 7 additions and 8 deletions

View File

@@ -2,11 +2,8 @@ import logging
import re, cStringIO, traceback, json
import urwid
try: from PIL import Image
except ImportError: import Image
try: from PIL.ExifTags import TAGS
except ImportError: from ExifTags import TAGS
from PIL import Image
from PIL.ExifTags import TAGS
import lxml.html, lxml.etree
import netlib.utils