From ee6401ecad915269a9be1bb09bdae4c841e88f73 Mon Sep 17 00:00:00 2001 From: Florent Flament Date: Sun, 15 Mar 2015 13:57:46 +0100 Subject: [PATCH] Remove duplicate test in navigation.py Remove the 'OS' check, since this is included in the 'PLATFORM' check a few lines above. --- resources/site-packages/pulsar/navigation.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/resources/site-packages/pulsar/navigation.py b/resources/site-packages/pulsar/navigation.py index 0e345afd8..7fdefd8bd 100644 --- a/resources/site-packages/pulsar/navigation.py +++ b/resources/site-packages/pulsar/navigation.py @@ -62,10 +62,6 @@ def run(url_suffix=""): from pulsar.util import notify notify("You must restart XBMC before using Pulsar") return - if PLATFORM["os"] not in ["windows", "linux", "darwin"]: - from pulsar.util import notify - notify("Pulsar is compatible only with Windows, Linux and OS X") - return socket.setdefaulttimeout(300) urllib2.install_opener(urllib2.build_opener(NoRedirectHandler()))