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

python3

parent 9af4190a
No related branches found
Tags 1.3.0
No related merge requests found
......@@ -7,7 +7,7 @@ PY_FILES += $(wildcard src/*.py)
default: bin ${PY_FILES}
@cp ${PY_FILES} bin/${DIRNAME}
@echo "#!/usr/bin/env python\nimport sys\nsys.path.append(sys.path[0]+'/${DIRNAME}')\nfrom ${MODNAME} import main\nif __name__ == '__main__':\n main()\n" > bin/${NAME}
@echo "#!/usr/bin/env python3\nimport sys\nsys.path.append(sys.path[0]+'/${DIRNAME}')\nfrom ${MODNAME} import main\nif __name__ == '__main__':\n main()\n" > bin/${NAME}
@chmod +x bin/${NAME} bin/${DIRNAME}/${MAIN}
bin:
......
......@@ -291,9 +291,9 @@ def main():
U.server_run()
except PyTango.DevFailed as e:
print ('-------> Received a DevFailed exception:', e)
print(('-------> Received a DevFailed exception:', e))
except Exception as e:
print ('-------> An unforeseen exception occured....', e)
print(('-------> An unforeseen exception occured....', e))
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