Skip to content

Commit

Permalink
Merge pull request #1200 from KeepSafe/web_ws_fix
Browse files Browse the repository at this point in the history
Add missing WSMsgType to web_ws.__all__
  • Loading branch information
popravich authored Sep 21, 2016
2 parents e640d5e + cbceb0d commit cf8eca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/web_ws.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
HTTPMethodNotAllowed)
from .web_reqrep import StreamResponse

__all__ = ('WebSocketResponse', 'WebSocketReady', 'MsgType')
__all__ = ('WebSocketResponse', 'WebSocketReady', 'MsgType', 'WSMsgType',)

PY_35 = sys.version_info >= (3, 5)
PY_352 = sys.version_info >= (3, 5, 2)
Expand Down

0 comments on commit cf8eca2

Please sign in to comment.