aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Liljeström <[email protected]>2017-06-26 21:04:32 +0200
committerDaniel Liljeström <[email protected]>2017-06-26 21:04:32 +0200
commit2cb7583da44e5440b757e6b671a95454501cfa8b (patch)
treefc2856afa5e31d8e15d8a803e2669f657007b4d4
parentGeneral: Remove changelog. (diff)
downloadpywal-2cb7583da44e5440b757e6b671a95454501cfa8b.tar.xz
pywal-2cb7583da44e5440b757e6b671a95454501cfa8b.zip
General: fix console_script entry_point. Closes #9
-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"