Skip to content
Snippets Groups Projects
Commit c3ebd59a authored by Javier Jardón's avatar Javier Jardón Committed by Tristan Van Berkom
Browse files

doc/bst2html.py: Fix deprecation warning

This fixes the following:
"
/home/jjardon/buildstream/buildstream/doc/bst2html.py:32: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
  from collections import Mapping
"
parent bd96e353
No related branches found
No related tags found
1 merge request!734doc/bst2html.py: Fix deprecation warning (1.2)
Pipeline #28690701 passed
......@@ -29,7 +29,7 @@ import sys
import re
import shlex
import subprocess
from collections import Mapping
from collections.abc import Mapping
from contextlib import contextmanager
from tempfile import TemporaryDirectory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment