GoogleChromeLabs / pywebsocket3

BSD 3-Clause "New" or "Revised" License
44 stars 32 forks source link

Add missing r to regular expression #27

Closed ricea closed 3 years ago

ricea commented 3 years ago

A regular expression using "\S" was missing the "r" to indicate that it was a raw string, causing a warning in Python 3. Add the missing "r".

Fixes #26.