From 496aa2593a596920705a3b6ef2f17dddf9c920c1 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Fri, 6 May 2016 21:09:35 +0200 Subject: [PATCH] Remove Emby reference from logs - Fixes #24 --- resources/lib/utils.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/lib/utils.py b/resources/lib/utils.py index 445f3c39..cb93e3b2 100644 --- a/resources/lib/utils.py +++ b/resources/lib/utils.py @@ -434,7 +434,7 @@ def reset(): deleteNodes() # Wipe the kodi databases - logMsg("EMBY", "Resetting the Kodi video database.", 0) + logMsg("Plex", "Resetting the Kodi video database.", 0) connection = kodiSQL('video') cursor = connection.cursor() cursor.execute('SELECT tbl_name FROM sqlite_master WHERE type="table"') @@ -447,7 +447,7 @@ def reset(): cursor.close() if settings('enableMusic') == "true": - logMsg("EMBY", "Resetting the Kodi music database.") + logMsg("Plex", "Resetting the Kodi music database.") connection = kodiSQL('music') cursor = connection.cursor() cursor.execute('SELECT tbl_name FROM sqlite_master WHERE type="table"') @@ -459,8 +459,8 @@ def reset(): connection.commit() cursor.close() - # Wipe the emby database - logMsg("EMBY", "Resetting the Emby database.", 0) + # Wipe the Plex database + logMsg("Plex", "Resetting the Emby database.", 0) connection = kodiSQL('emby') cursor = connection.cursor() cursor.execute('SELECT tbl_name FROM sqlite_master WHERE type="table"') @@ -777,7 +777,7 @@ def passwordsXML(): etree.ElementTree(root).write(xmlpath) break else: - logMsg("EMBY", "Failed to find saved server: %s in passwords.xml" % credentials, 1) + logMsg("Plex", "Failed to find saved server: %s in passwords.xml" % credentials, 1) settings('networkCreds', value="") xbmcgui.Dialog().notification(