colors: Fix cache file name.

This commit is contained in:
Dylan Araps 2017-08-12 12:03:18 +10:00
parent 61cb5724e0
commit 02325547f4

View File

@ -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)