From f59b708f3a7e128543e1567afb0828ab7afd8fd6 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Fri, 7 Oct 2016 20:43:54 +1100 Subject: [PATCH] Fixed typo --- PIL/ImageGrab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/ImageGrab.py b/PIL/ImageGrab.py index 55fb014c4..03283f3d6 100644 --- a/PIL/ImageGrab.py +++ b/PIL/ImageGrab.py @@ -41,7 +41,7 @@ def grab(bbox=None): size, data = grabber() im = Image.frombytes( "RGB", size, data, - # RGB, 32-bit line padding, origo in lower left corner + # RGB, 32-bit line padding, origin lower left corner "raw", "BGR", (size[0]*3 + 3) & -4, -1 ) if bbox: