From f2839e4ce8a507e7da3e8b9f10f87865f654d400 Mon Sep 17 00:00:00 2001 From: Thomas Lynch Date: Wed, 2 Feb 2022 17:12:14 +1100 Subject: [PATCH] typo, bugfix --- notification_button.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notification_button.py b/notification_button.py index cd384b1..ebe60aa 100755 --- a/notification_button.py +++ b/notification_button.py @@ -34,7 +34,7 @@ def main(argv): elif 'errors' in res: toast_message = "\n".join(res['errors']) if toast_message: - subprocess.call(['termux-toast', res['message']]) + subprocess.call(['termux-toast', toast_message]) if __name__ == '__main__': main(sys.argv[1:])