From f539df064c6ce01beea1b728cbe8b00e3ba0a2cb Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 4 Feb 2017 12:41:43 -0600 Subject: [PATCH] mpd-not: enable https cert checking --- scripts/mpd-notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mpd-notifications.py b/scripts/mpd-notifications.py index ea9c735..ca1ed8a 100644 --- a/scripts/mpd-notifications.py +++ b/scripts/mpd-notifications.py @@ -69,7 +69,7 @@ def notify_song(): last_np = np logger.debug("notifying: {0:s}".format(np)) payload = {'message': np} - r = requests.post(args.location, verify=False, auth=auth, data=payload) + r = requests.post(args.location, auth=auth, data=payload) print(r.json()) notify_song()