colors: Fix empty key. Closes #164

This commit is contained in:
Dylan Araps 2018-01-31 09:32:39 +11:00
parent 2601caead6
commit 017bc01940

View File

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