From 99bf460bf1af6ec9b6689d134308d4af85295a35 Mon Sep 17 00:00:00 2001 From: shaun Date: Sun, 16 Oct 2016 10:22:58 +1100 Subject: [PATCH] small change to the user agent string --- resources/lib/ga_client.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/resources/lib/ga_client.py b/resources/lib/ga_client.py index 266ac1c3..6bd8285e 100644 --- a/resources/lib/ga_client.py +++ b/resources/lib/ga_client.py @@ -39,9 +39,6 @@ class GoogleAnalytics(): def getUserAgentOS(self): - return platform.system() - - ''' if xbmc.getCondVisibility('system.platform.osx'): return "OSX" elif xbmc.getCondVisibility('system.platform.ios'): @@ -55,8 +52,7 @@ class GoogleAnalytics(): elif xbmc.getCondVisibility('system.platform.linux'): return "Linux" else: - return platform.system() - ''' + return "Other" def formatException(self): exc_type, exc_obj, exc_tb = sys.exc_info()