summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorDaniel Liljeström <daniel@mailbox.sh>2017-06-26 21:04:32 +0200
committerDaniel Liljeström <daniel@mailbox.sh>2017-06-26 21:04:32 +0200
commit2cb7583da44e5440b757e6b671a95454501cfa8b (patch)
treefc2856afa5e31d8e15d8a803e2669f657007b4d4 /setup.py
parent0c2d50093893a8e34aba0f0085f3a1cd4042347d (diff)
General: fix console_script entry_point. Closes #9
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
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"