SavinaRoja / PyUserInput

A module for cross-platform control of the mouse and keyboard in python that is simple to install and use.
GNU General Public License v3.0
1.07k stars 244 forks source link

PyMouseEvent bug in example #69

Closed DooBLER closed 9 years ago

DooBLER commented 9 years ago

in README should be

C = Clickonacci() C.start()

not C = Clickonacci() C.run()

pepijndevos commented 9 years ago

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.