aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'rest_framework/compat.py')
-rw-r--r--rest_framework/compat.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/rest_framework/compat.py b/rest_framework/compat.py
index 7303c32a..89af9b48 100644
--- a/rest_framework/compat.py
+++ b/rest_framework/compat.py
@@ -84,15 +84,6 @@ except ImportError:
from collections import UserDict
from collections import MutableMapping as DictMixin
-# Try to import PIL in either of the two ways it can end up installed.
-try:
- from PIL import Image
-except ImportError:
- try:
- import Image
- except ImportError:
- Image = None
-
def get_model_name(model_cls):
try: