Commit 5aa3e5bd authored by Michael Howitz's avatar Michael Howitz

Fix DeprecationWarning about MutableMapping.

Fixes #484.
parent d155e409
......@@ -4,7 +4,8 @@ Change History
2.13.3 (unreleased)
===================
- Nothing changed yet.
- Fix DeprecationWarning about MutableMapping.
(`#484 <https://github.com/buildout/buildout/issues/484>_`)
2.13.2 (2019-07-03)
......
......@@ -23,9 +23,9 @@ except ImportError:
from md5 import md5
try:
from UserDict import DictMixin
from collections.abc import MutableMapping as DictMixin
except ImportError:
from collections import MutableMapping as DictMixin
from UserDict import DictMixin
import zc.buildout.configparser
import copy
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment