Import everything in websocketproxy and websocket

Old users of the websockify library used websockify.WebSocketProxy
The refactor into a module unneccessarily broke this import. The
current imports in __init__.py don't actually do anything so this
patch changes the import to import everything so that the old import
still works. This appears to be the original intention of the existing
import statements.
This commit is contained in:
Vishvananda Ishaya 2012-09-25 22:23:01 -07:00
parent 6d9deda9c5
commit 880257a431
1 changed files with 2 additions and 1 deletions

View File

@ -1 +1,2 @@
import websocket, websocketproxy
from websocket import *
from websocketproxy import *