Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Update bottle.ext.websocket import #20

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion paling/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
import gevent as gvt
import json as jsn
import bottle as btl
import bottle.ext.websocket as wbs
try:
import bottle_websocket as wbs
except ImportError:
import bottle.ext.websocket as wbs
import re as rgx
import os
import paling.browsers as brw
Expand Down