Closed DooBLER closed 9 years ago
in README should be
C = Clickonacci() C.start()
not C = Clickonacci() C.run()
It's not so much a bug as a "feature". Calling run will not start a thread, but run in the current thread. Using start would instantly terminate the program because the main thread is done.
in README should be
C = Clickonacci() C.start()
not C = Clickonacci() C.run()