diff options
| -rw-r--r-- | pywal/colors.py | 2 |
1 files changed, 1 insertions, 1 deletions
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.") |