From 25c6b8a8bf3eb8a70d68430e807f6a3cba417a04 Mon Sep 17 00:00:00 2001 From: airclay Date: Sun, 12 Sep 2021 08:29:35 -0500 Subject: [PATCH] remove cacheUpdates options to avoid partial updates --- systrayUpdater | 1 - 1 file changed, 1 deletion(-) diff --git a/systrayUpdater b/systrayUpdater index 1e5f03f..c90e466 100755 --- a/systrayUpdater +++ b/systrayUpdater @@ -17,7 +17,6 @@ with open(path.expanduser("~/.config/systrayUpdater/systrayUpdater.yml")) as f: conf = yaml.load(f, yaml.FullLoader) term = str(conf['terminal']) opt = str(conf['option']) - cache = str(conf['cache']).capitalize() wait = int(conf['timer']) * 60000 icn = path.join(path.expanduser("~/.config/systrayUpdater/"), str(conf['icon'])) f.close()