From 7eb9913391413cee5fd28fd407d5385cac8d6d5b Mon Sep 17 00:00:00 2001 From: Nate Bogdanowicz Date: Sun, 20 Aug 2017 13:14:48 -0700 Subject: [PATCH] Fix kodi url --- beetsplug/kodiupdate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/kodiupdate.py b/beetsplug/kodiupdate.py index 78f120d89..4713151b3 100644 --- a/beetsplug/kodiupdate.py +++ b/beetsplug/kodiupdate.py @@ -33,7 +33,7 @@ from beets.plugins import BeetsPlugin def update_kodi(host, port, user, password): """Sends request to the Kodi api to start a library refresh. """ - url = "http://{0}:{1}/jsonrpc/".format(host, port) + url = "http://{0}:{1}/jsonrpc".format(host, port) """Content-Type: application/json is mandatory according to the kodi jsonrpc documentation"""