From b3ffbbf3eaf4b91b6946180823834fd8be116c3f Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sun, 6 Sep 2020 14:14:08 -0700 Subject: [PATCH] Patch osxnotify for Python 3 compatibility * Fixes Tautulli/Tautulli-Issues#276 --- lib/osxnotify/registerapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/osxnotify/registerapp.py b/lib/osxnotify/registerapp.py index 34006ee0..55a84b20 100644 --- a/lib/osxnotify/registerapp.py +++ b/lib/osxnotify/registerapp.py @@ -129,5 +129,5 @@ if __name__ == '__main__': return app_path, 'App registered' - except Exception, e: + except Exception as e: return None, 'Error creating App %s. %s' % (app_path, e) \ No newline at end of file