From d1e401cb0c6c6f4d4ec4df50b5082e94a129ea4e Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 24 Nov 2019 22:35:58 -0800 Subject: [PATCH] Remove default subject and body for notify API command --- plexpy/api2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/api2.py b/plexpy/api2.py index 8d23982d..2297cfe2 100644 --- a/plexpy/api2.py +++ b/plexpy/api2.py @@ -411,7 +411,7 @@ class API2: return - def notify(self, notifier_id='', subject='Tautulli', body='Test notification', **kwargs): + def notify(self, notifier_id='', subject='', body='', **kwargs): """ Send a notification using Tautulli. ```