diff -r ac84ac3c0f05 -r f0cb7579c0b4 Examples/rhallo.py --- a/Examples/rhallo.py Sat Jul 05 11:41:14 2014 +0200 +++ b/Examples/rhallo.py Sat Jul 05 12:13:23 2014 +0200 @@ -2,15 +2,15 @@ import sys -import eric5dbgstub +import eric6dbgstub def main(): print("Hello World!") sys.exit(0) if __name__ == "__main__": - if eric5dbgstub.initDebugger("standard"): -# or if eric5dbgstub.initDebugger("threads"): - eric5dbgstub.debugger.startDebugger() + if eric6dbgstub.initDebugger("standard"): +# or if eric6dbgstub.initDebugger("threads"): + eric6dbgstub.debugger.startDebugger() main()