From 02325547f4e82c7fec2404b024a57b3e7efc99f0 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 12 Aug 2017 12:03:18 +1000 Subject: [PATCH] colors: Fix cache file name. --- pywal/colors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pywal/colors.py b/pywal/colors.py index e20c27d..fd233c5 100644 --- a/pywal/colors.py +++ b/pywal/colors.py @@ -84,8 +84,8 @@ def get(img, cache_dir=CACHE_DIR, color_count=COLOR_COUNT, notify=False): """Get the colorscheme.""" # _home_dylan_img_jpg.json - cache_file = os.path.join(cache_dir, "schemes", - img.replace("/", "_"), ".json") + cache_file = img.replace("/", "_").replace(".", "_") + cache_file = os.path.join(cache_dir, "schemes", cache_file + ".json") if os.path.isfile(cache_file): colors = util.read_file_json(cache_file)