hotfix: chache -> cache

This commit is contained in:
deviantfero 2018-02-04 15:38:48 -06:00
parent 9a7e1d9f7f
commit 25b802747d
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@
Created by Dylan Araps.
"""
from .settings import __version__, __chache_version__
from .settings import __version__, __cache_version__
from . import colors
from . import export
from . import image
@ -19,7 +19,7 @@ from . import wallpaper
__all__ = [
"__version__",
"__chache_version__",
"__cache_version__",
"colors",
"export",
"image",

View File

@ -7,7 +7,7 @@ import shutil
import subprocess
import sys
from .settings import CACHE_DIR, COLOR_COUNT, __chache_version__
from .settings import CACHE_DIR, COLOR_COUNT, __cache_version__
from . import util
@ -106,7 +106,7 @@ def get(img, cache_dir=CACHE_DIR,
color_type = "light" if light else "dark"
cache_file = re.sub("[/|\\|.]", "_", img)
cache_file = os.path.join(cache_dir, "schemes", "%s_%s_%s.json"
% (cache_file, color_type, __chache_version__))
% (cache_file, color_type, __cache_version__))
if os.path.isfile(cache_file):
colors = file(cache_file)

View File

@ -14,7 +14,7 @@ import platform
__version__ = "1.3.1"
__chache_version__ = "1.0.0"
__cache_version__ = "1.0.0"
HOME = os.getenv("HOME", os.getenv("USERPROFILE"))