summaryrefslogtreecommitdiff
path: root/pywal
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2018-04-02 16:19:09 +1000
committerDylan Araps <dylan.araps@gmail.com>2018-04-02 16:19:09 +1000
commit385dcb6887e755a380c8fa266dc1bde1db1b32dd (patch)
tree4294f8da3e86a2de566914fded93655e7fd9430b /pywal
parent311fbf2b6cbf22510f984b64aa97923521b31af1 (diff)
misc: cleanup
Diffstat (limited to 'pywal')
-rw-r--r--pywal/colors.py2
-rw-r--r--pywal/reload.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/pywal/colors.py b/pywal/colors.py
index 157f7df..5cc2a9b 100644
--- a/pywal/colors.py
+++ b/pywal/colors.py
@@ -120,7 +120,7 @@ def get(img, light=False, backend="wal", cache_dir=CACHE_DIR):
logging.info("Found cached colorscheme.")
else:
- logging.info("Generating a colorscheme...")
+ logging.info("Generating a colorscheme.")
backend = get_backend(backend)
# Dynamically import the backend we want to use.
diff --git a/pywal/reload.py b/pywal/reload.py
index 7869d0b..02d1073 100644
--- a/pywal/reload.py
+++ b/pywal/reload.py
@@ -33,12 +33,12 @@ def oomox(gen_theme):
"""Call oomox to generate a theme."""
if gen_theme:
if not shutil.which("oomox-cli"):
- logging.warning("Oomox not found, skipping...")
+ logging.warning("Oomox not found, skipping.")
return
oomox_file = os.path.join(CACHE_DIR, "colors-oomox")
- logging.info("Waiting for oomox...")
+ logging.info("Waiting for Oomox.")
subprocess.run(["oomox-cli", "-o", "wal", oomox_file],
stdout=subprocess.DEVNULL)