Fix launch.sh

We want to be able to run "python -m poezio" AND have a poezio entry
point.
This commit is contained in:
mathieui 2016-07-03 02:13:15 +02:00
parent 401048aba1
commit 2e988af4d8

View file

@ -7,3 +7,6 @@ def run():
import sys
sys.exit(1)
return 0
if __name__ == '__main__':
run()