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

Commit

Permalink
Merge pull request #20 from python-paling/4-fix-websocket-import-erro…
Browse files Browse the repository at this point in the history
…r-for-python-312-compatibility

Update bottle.ext.websocket import
  • Loading branch information
savelkouls authored Mar 23, 2024
2 parents 6bb8eed + 1978aa8 commit de4bf9e
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit de4bf9e

Please sign in to comment.