joshuaskelly / twitch-observer

Turn Twitch chatter into Python events
MIT License
26 stars 6 forks source link

Calling Observer.stop(force_stop=True) Inside Context Manager Hangs #46

Closed joshuaskelly closed 7 years ago

joshuaskelly commented 7 years ago

Overview

Calling Observer.stop(force_stop=True) inside a context manager object will cause the Observer to hang.

with Observer('nick', 'oauth') as observer:
    observer.stop(force_stop=True)
joshuaskelly commented 7 years ago

Working on a fix for this.