From 6eb5b7f986466eb3eb1367f72880850215db50c0 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Sun, 30 Dec 2012 15:19:17 -0600 Subject: [PATCH] fixed shutdown function in scheduler.py --- scheduler.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scheduler.py b/scheduler.py index 8b9e990..a4dcd26 100644 --- a/scheduler.py +++ b/scheduler.py @@ -49,7 +49,7 @@ class BackupScheduler: if(utils.getSetting("cron_shutdown") == 'true'): #wait 10 seconds to make sure all backup processes and files are completed time.sleep(10) - xbmc.executebuiltin('Quit()') + xbmc.executebuiltin('ShutDown()') else: #find the next run time like normal self.findNextRun(now,True) @@ -90,7 +90,6 @@ class BackupScheduler: hour_of_day = int(hour_of_day[0:2]) if(schedule_type == 0): #every day - cron_exp = "0 " + str(hour_of_day) + " * * *" elif(schedule_type == 1): #once a week