diff -r 572a009369f0 -r 23b45a742e17 Examples/rhallo.py --- a/Examples/rhallo.py Fri Jan 08 19:14:19 2010 +0000 +++ b/Examples/rhallo.py Sat Jan 09 19:43:36 2010 +0000 @@ -2,15 +2,15 @@ import sys -import eric4dbgstub +import eric5dbgstub def main(): print("Hello World!") sys.exit(0) if __name__ == "__main__": - if eric4dbgstub.initDebugger("standard"): -# or if eric4dbgstub.initDebugger("threads"): - eric4dbgstub.debugger.startDebugger() + if eric5dbgstub.initDebugger("standard"): +# or if eric5dbgstub.initDebugger("threads"): + eric5dbgstub.debugger.startDebugger() main()