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
parent aa80fdf738
commit b3ffbbf3ea

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)