diff options
author | mathieui <mathieui@mathieui.net> | 2016-07-03 01:59:05 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-07-03 01:59:05 +0200 |
commit | 401048aba1b6e4cb0b5bf28e2319c89593253cc3 (patch) | |
tree | 8dfce3850f40f8bf6e30bc0fb67f7eef133e2546 | |
parent | 8f1f877c967ee0a080bdecdcf14a400d52bdc475 (diff) | |
download | poezio-401048aba1b6e4cb0b5bf28e2319c89593253cc3.tar.gz poezio-401048aba1b6e4cb0b5bf28e2319c89593253cc3.tar.bz2 poezio-401048aba1b6e4cb0b5bf28e2319c89593253cc3.tar.xz poezio-401048aba1b6e4cb0b5bf28e2319c89593253cc3.zip |
Make the entry point a function
otherwise it breaks the generated entry point loader, which will work
but display a traceback on exit
-rw-r--r-- | poezio/__main__.py | 14 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 9 insertions, 7 deletions
diff --git a/poezio/__main__.py b/poezio/__main__.py index d924d7fc..f9eefb1b 100644 --- a/poezio/__main__.py +++ b/poezio/__main__.py @@ -1,7 +1,9 @@ -from poezio.poezio import test_curses, main +def run(): + from poezio.poezio import test_curses, main -if test_curses(): - main() -else: - import sys - sys.exit(1) + if test_curses(): + main() + else: + import sys + sys.exit(1) + return 0 @@ -96,7 +96,7 @@ setup(name="poezio", 'poezio_themes': 'data/themes'}, package_data={'poezio': ['default_config.cfg']}, scripts=['scripts/poezio_gpg_export'], - entry_points={'console_scripts': ['poezio = poezio.__main__']}, + entry_points={'console_scripts': ['poezio = poezio.__main__:run']}, data_files=([('share/man/man1/', ['data/poezio.1']), ('share/poezio/', ['README.rst', 'COPYING', 'CHANGELOG'])] + find_doc('share/doc/poezio/source', 'source') |