mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
fix PIL import
This commit is contained in:
parent
0a2e7a97cd
commit
3aa8d42b05
@ -20,12 +20,12 @@ import logging
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
import PIL
|
||||
import html2text
|
||||
import lxml.etree
|
||||
import lxml.html
|
||||
import six
|
||||
from PIL import ExifTags
|
||||
from PIL import Image
|
||||
from six.moves import cStringIO as StringIO
|
||||
|
||||
from mitmproxy import exceptions
|
||||
@ -403,7 +403,7 @@ class ViewImage(View):
|
||||
|
||||
def __call__(self, data, **metadata):
|
||||
try:
|
||||
img = PIL.Image.open(StringIO(data))
|
||||
img = Image.open(StringIO(data))
|
||||
except IOError:
|
||||
return None
|
||||
parts = [
|
||||
|
Loading…
Reference in New Issue
Block a user