Skip to content
Snippets Groups Projects
Commit 2139143f authored by Claudio Scafuri's avatar Claudio Scafuri :speech_balloon:
Browse files

added executable python wrapper

parent 1c22e99d
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
#
# Template of main python server wrapper
# Solves the problem of pogo generated Tango server file names which are not easily handled by databeds and Starter.
# 1) copy this template in the server directoy using the canonical server (executable) name: cp ../python-srv.template myclass-srv
# 2) chmod +x myclass-srv
# 3) edit myclass-srv ename MyClass to the actual class name of the python Tango server (you can also clean up these notes)
#
from Cmm import main
if __name__ == '__main__':
main()
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment