diff options
author | Javier Jardón <jjardon@gnome.org> | 2018-10-18 15:07:56 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2018-10-18 15:13:35 +0100 |
commit | f1aa0974d36f4201098004794ca8b5f263fb01a1 (patch) | |
tree | fea0132e12378885370285271bb8490112f50fa5 /buildstream/plugins/elements/junction.py | |
parent | 892866e1fbc08c9cb233ee9f4fe23cd01d0a4b56 (diff) | |
download | buildstream-jjardon/warnings_collections.tar.gz |
Fix python warnings: Use collections.abc instead collectionsjjardon/warnings_collections
Since python 3.3, collections has been moved to collections.abc module.
For backwards compatibility, they continue to be visible in this module through Python 3.7.
Subsequently, they will be removed entirely.
See https://docs.python.org/3/library/collections.html
Diffstat (limited to 'buildstream/plugins/elements/junction.py')
-rw-r--r-- | buildstream/plugins/elements/junction.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/plugins/elements/junction.py b/buildstream/plugins/elements/junction.py index ee5ed24d5..7f9817359 100644 --- a/buildstream/plugins/elements/junction.py +++ b/buildstream/plugins/elements/junction.py @@ -124,7 +124,7 @@ the user to resolve possibly conflicting nested junctions by creating a junction with the same name in the top-level project, which then takes precedence. """ -from collections import Mapping +from collections.abc import Mapping from buildstream import Element from buildstream._pipeline import PipelineError |