From f8b50a0338714757e46732142d4ee36207813cd8 Mon Sep 17 00:00:00 2001 From: Glenn Hawken Date: Sat, 17 Dec 2016 15:17:41 +1100 Subject: [PATCH] Indent error --- EmbyPlugin.indigoPlugin/Contents/Server Plugin/plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EmbyPlugin.indigoPlugin/Contents/Server Plugin/plugin.py b/EmbyPlugin.indigoPlugin/Contents/Server Plugin/plugin.py index 4cd6b73..481480d 100644 --- a/EmbyPlugin.indigoPlugin/Contents/Server Plugin/plugin.py +++ b/EmbyPlugin.indigoPlugin/Contents/Server Plugin/plugin.py @@ -150,10 +150,10 @@ def startup(self): # See if there is a plugin update and whether the user wants to be notified. try: if self.configUpdaterForceUpdate: - self.updater.updatePlugin() + self.updatePlugin() else: - self.updater.checkForUpdate() + self.checkForUpdates() self.sleep(1) except Exception as error: self.errorLog(u"Update checker error: {0}".format(error)) @@ -466,7 +466,7 @@ def refreshDataForDev(self, dev): if dev.states['deviceIsOnline']: if self.debugLevel >= 2: self.debugLog(u"Online: Refreshing device: {0}".format(dev.name)) - self.finalDict = self.getTheData(dev) + self.finalDict = self.getTheData(dev) # Throw the data to the appropriate module to flatten it. #dev.updateStateOnServer('deviceIsOnline', value=True, uiValue="Processing")