Patch osxnotify for Python 3 compatibility

* Fixes Tautulli/Tautulli-Issues#276
This commit is contained in:
JonnyWong16 2020-09-06 14:14:08 -07:00
commit b3ffbbf3ea
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -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)