From 017bc019401dac14d92873e014b108f6101c929b Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 31 Jan 2018 09:32:39 +1100 Subject: [PATCH] colors: Fix empty key. Closes #164 --- pywal/colors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywal/colors.py b/pywal/colors.py index f140887..7294e68 100644 --- a/pywal/colors.py +++ b/pywal/colors.py @@ -90,7 +90,7 @@ def get(img, cache_dir=CACHE_DIR, cache_file = os.path.join(cache_dir, "schemes", cache_file + ".json") if os.path.isfile(cache_file): - colors = util.read_file_json(cache_file) + colors = file(cache_file) util.Color.alpha_num = colors["alpha"] print("colors: Found cached colorscheme.")