summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)