Browse Source

Not restarting after update

pull/477/merge
Ruud 13 years ago
parent
commit
f15351aa73
  1. 5
      couchpotato/core/_base/_core/main.py
  2. 5
      couchpotato/core/_base/updater/main.py

5
couchpotato/core/_base/_core/main.py

@ -18,7 +18,10 @@ log = CPLog(__name__)
class Core(Plugin):
ignore_restart = ['Core.restart', 'Core.shutdown', 'Updater.check']
ignore_restart = [
'Core.restart', 'Core.shutdown',
'Updater.check', 'Updater.autoUpdate',
]
shutdown_started = False
def __init__(self):

5
couchpotato/core/_base/updater/main.py

@ -66,6 +66,10 @@ class Updater(Plugin):
fireEventAsync('app.restart')
return True
return False
def check(self):
if self.isDisabled():
return
@ -171,7 +175,6 @@ class GitUpdater(BaseUpdater):
self.repo.saveStash()
log.info('Updating to latest version')
info = self.info()
self.repo.pull()
# Delete leftover .pyc files

Loading…
Cancel
Save