summaryrefslogtreecommitdiff
path: root/pywal/theme.py
diff options
context:
space:
mode:
Diffstat (limited to 'pywal/theme.py')
-rw-r--r--pywal/theme.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pywal/theme.py b/pywal/theme.py
index 6439d40..96f86b9 100644
--- a/pywal/theme.py
+++ b/pywal/theme.py
@@ -1,6 +1,7 @@
"""
Theme file handling.
"""
+import logging
import os
import random
import sys
@@ -72,5 +73,5 @@ def file(input_file):
return parse_theme(theme_file)
else:
- print("No colorscheme file found, exiting...")
+ logging.error("No colorscheme file found, exiting...")
sys.exit(1)