From 2cb7583da44e5440b757e6b671a95454501cfa8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Liljestr=C3=B6m?= Date: Mon, 26 Jun 2017 21:04:32 +0200 Subject: [PATCH] General: fix console_script entry_point. Closes #9 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 01e2096..2b79661 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( packages=['pywal'], entry_points={ "console_scripts": [ - "wal=pywal:main" + "wal=pywal.__main__:main" ] }, python_requires=">=3.6"