diff --git a/pywal/backends/okthief.py b/pywal/backends/okthief.py index b637cbe..6f81c27 100644 --- a/pywal/backends/okthief.py +++ b/pywal/backends/okthief.py @@ -12,7 +12,7 @@ def gen_colors(img): - """Generate a colorscheme using Colorz.""" + """Generate a colorscheme using okthief.""" cmd = ["okthief", "--num-colors", "8", "--file"] out = subprocess.check_output([*cmd, img]) cols = [x["hex"] for x in json.loads(out)]