# HG changeset patch # User Ludovic Chabant # Date 1483550349 28800 # Node ID db27f548daa8f206473b875086e0624b14b392aa # Parent 094c847e61206cf789922c4cfb571e930dd97cae Fix incorrect entry point. diff -r 094c847e6120 -r db27f548daa8 setup.py --- a/setup.py Wed Jan 04 09:15:44 2017 -0800 +++ b/setup.py Wed Jan 04 09:19:09 2017 -0800 @@ -37,6 +37,6 @@ install_requires=install_requires, entry_points={ 'console_scripts': [ - 'jouvence = jouvence.cli.main' + 'jouvence = jouvence.cli:main' ]} )