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

Fix DeprecationWarning about MutableMapping.

Fixes #484.
parent d155e409
...@@ -4,7 +4,8 @@ Change History ...@@ -4,7 +4,8 @@ Change History
2.13.3 (unreleased) 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) 2.13.2 (2019-07-03)
......
...@@ -23,9 +23,9 @@ except ImportError: ...@@ -23,9 +23,9 @@ except ImportError:
from md5 import md5 from md5 import md5
try: try:
from UserDict import DictMixin from collections.abc import MutableMapping as DictMixin
except ImportError: except ImportError:
from collections import MutableMapping as DictMixin from UserDict import DictMixin
import zc.buildout.configparser import zc.buildout.configparser
import copy import copy
...@@ -2067,7 +2067,7 @@ Commands: ...@@ -2067,7 +2067,7 @@ Commands:
COMPUTED_VALUE, DEFAULT_VALUE, COMMAND_LINE_VALUE). COMPUTED_VALUE, DEFAULT_VALUE, COMMAND_LINE_VALUE).
query section:key query section:key
Display value of given section key pair. Display value of given section key pair.
""" """
......
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