I had a similar problem with the application I wrote. I ran the application through a shell script containing a string
python /path/to/application.py
This started the application as I expected, but the launch notification did not stop. It worked correctly as soon as I changed the contents of my script to the following:
exec "/usr/bin/python" "/path/to/application.py"
Obviously, the latter is apparently the right way to run the application, although I don't have enough information to understand why.
Marko
source share