Examples/rhallo.py@32a8b51c89da
Examples/rhallo.py
Sun, 14 Jan 2018 12:03:34 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 14 Jan 2018 12:03:34 +0100
- changeset 6064
- 32a8b51c89da
- parent 5422
-
222da86472d9
- child 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Fixed a bug in the plug-in repository dialog causing the cleanup function to fail, if the download directory contains a file without version info seperated by '-'.
#!/usr/bin/env python
import sys
import eric6dbgstub
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
if eric6dbgstub.initDebugger("standard"):
eric6dbgstub.debugger.startDebugger()
main()