Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.buildout
Commits
5aa3e5bd
Commit
5aa3e5bd
authored
Aug 20, 2019
by
Michael Howitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix DeprecationWarning about MutableMapping.
Fixes #484.
parent
d155e409
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
CHANGES.rst
CHANGES.rst
+2
-1
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+3
-3
No files found.
CHANGES.rst
View file @
5aa3e5bd
...
...
@@ -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
)
...
...
src/zc/buildout/buildout.py
View file @
5aa3e5bd
...
...
@@ -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
...
...
@@ -2067,7 +2067,7 @@ Commands:
COMPUTED_VALUE, DEFAULT_VALUE, COMMAND_LINE_VALUE).
query section:key
Display value of given section key pair.
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment