From 8547b88977e6fa4b2644c6e59225534e1d75c369 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Tue, 23 Jun 2020 08:58:57 -0700 Subject: [PATCH] Disable pyautogui failsafe --- present/present.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/present/present.py b/present/present.py index 961b968..2f74b51 100755 --- a/present/present.py +++ b/present/present.py @@ -17,6 +17,8 @@ if len(sys.argv) != 2: print(f'usage: {sys.argv[0]} ') sys.exit(1) +pyautogui.FAILSAFE = False + url = urllib.parse.urlparse(sys.argv[1]) qs = urllib.parse.parse_qs(url.query)