aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/control.py
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2023-04-22 16:42:48 +0200
committerSimon Glass <sjg@chromium.org>2023-04-28 11:49:00 -0600
commitde65b122a2534a5bc61f7714f10125baee5d58f3 (patch)
treea7971e5c583323dd06e392819b80f0882ef7ce4b /tools/binman/control.py
parentf53e973b84d5b60439c8f0cc98099c020b3ab83a (diff)
tools: Fall back to importlib_resources on Python 3.6
importlib.resources became part of 3.7 only. Allow using distros with 3.6 and the importlib_resources backport. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/control.py')
-rw-r--r--tools/binman/control.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/binman/control.py b/tools/binman/control.py
index 0febcb79a6..68597c4e77 100644
--- a/tools/binman/control.py
+++ b/tools/binman/control.py
@@ -7,7 +7,11 @@
from collections import OrderedDict
import glob
-import importlib.resources
+try:
+ import importlib.resources
+except ImportError:
+ # for Python 3.6
+ import importlib_resources
import os
import pkg_resources
import re