From d26575765128b67ea3022bc6bd125da5880314a1 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 21 Oct 2018 17:23:14 +1100 Subject: [PATCH] Continuation line unaligned for hanging indent --- src/PIL/ImageGrab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PIL/ImageGrab.py b/src/PIL/ImageGrab.py index 712b02cd0..e8961cd17 100644 --- a/src/PIL/ImageGrab.py +++ b/src/PIL/ImageGrab.py @@ -56,7 +56,7 @@ def grabclipboard(): commands = [ "set theFile to (open for access POSIX file \""+filepath+"\" with write permission)", "try", - "write (the clipboard as JPEG picture) to theFile", + " write (the clipboard as JPEG picture) to theFile", "end try", "close access theFile" ]