From 67c4c33a5bcd62448f6ebe22a1674e25fcd130e3 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Sat, 26 Dec 2015 12:19:42 -0600 Subject: [PATCH] Correct path for deviceid --- resources/lib/clientinfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/clientinfo.py b/resources/lib/clientinfo.py index 5723db58..f3863a14 100644 --- a/resources/lib/clientinfo.py +++ b/resources/lib/clientinfo.py @@ -74,7 +74,7 @@ class ClientInfo(): return clientId addon_path = self.addon.getAddonInfo('path').decode('utf-8') - GUID_file = xbmc.translatePath("%s\machine_guid" % addon_path).decode('utf-8') + GUID_file = xbmc.translatePath("%smachine_guid" % addon_path).decode('utf-8') try: GUID = open(GUID_file)