borgend.py

changeset 10
76dbfb06eba0
parent 9
aa121291eb0e
child 31
b4b4bb7a2ec5
--- a/borgend.py	Sat Jan 20 15:55:09 2018 +0000
+++ b/borgend.py	Sat Jan 20 19:57:05 2018 +0000
@@ -19,17 +19,13 @@
 for i in range(len(backupconfigs)):
     logging.info('Setting up backup set %d' % i)
     backups[i]=Backup(i, backupconfigs[i])
-
-queue=Queue()
-#print(backups[0].create(queue))
-backups[0].schedule()
-
-#backups[0].join()
+    backups[i].schedule()
 
 if __name__ == "__main__":
     #print(settings)
     tray=BorgendTray("Borgend", backups);
     tray.run()
+    pass
 
     #
     # This shit is fucked, disables ^C etc., and threading doesn't seem to help

mercurial