diff --git a/PIL/ImageGrab.py b/PIL/ImageGrab.py index c52189145..c1306d611 100644 --- a/PIL/ImageGrab.py +++ b/PIL/ImageGrab.py @@ -22,13 +22,7 @@ if sys.platform not in ["win32", "darwin"]: raise ImportError("ImageGrab is OS X and Windows only") if sys.platform == "win32": - try: - # built-in driver (1.1.3 and later) - grabber = Image.core.grabscreen - except AttributeError: - # stand-alone driver (pil plus) - import _grabscreen - grabber = _grabscreen.grab + grabber = Image.core.grabscreen elif sys.platform == "darwin": import os import tempfile