Skip to content

Commit

Permalink
Indent error
Browse files Browse the repository at this point in the history
  • Loading branch information
Glenn Hawken committed Dec 17, 2016
1 parent e74f639 commit f8b50a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions EmbyPlugin.indigoPlugin/Contents/Server Plugin/plugin.py
Expand Up @@ -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))
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit f8b50a0

Please sign in to comment.