summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbottle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bottle.py b/bottle.py
index 0b22f2e..d84c7b0 100755
--- a/bottle.py
+++ b/bottle.py
@@ -129,7 +129,7 @@ if py3k:
from urllib.parse import urlencode, quote as urlquote, unquote as urlunquote
urlunquote = functools.partial(urlunquote, encoding='latin1')
from http.cookies import SimpleCookie, Morsel, CookieError
- from collections import MutableMapping as DictMixin
+ from collections.abc import MutableMapping as DictMixin
import pickle
from io import BytesIO
import configparser