Skip to content

Commit 29ddcf2

Browse files
committed
bottle.py
1 parent 836dba8 commit 29ddcf2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ardublocklyserver/local-packages/bottle.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ def _e(): return sys.exc_info()[1]
8484
from urllib.parse import urlencode, quote as urlquote, unquote as urlunquote
8585
urlunquote = functools.partial(urlunquote, encoding='latin1')
8686
from http.cookies import SimpleCookie
87-
from collections import MutableMapping as DictMixin
87+
from collections.abc import MutableMapping as DictMixin
88+
#from collections import MutableMapping as DictMixin
8889
import pickle
8990
from io import BytesIO
9091
from configparser import ConfigParser

0 commit comments

Comments
 (0)