summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-09-01 08:05:12 +0300
committerSimon Glass <sjg@chromium.org>2023-09-23 18:00:37 +0300
commit8acdb70c101530df17a655f44a7c6f3ff6e5a6dc (patch)
treefd70b45bf0be8f05aef6d1b1d5aa98bafc309994
parent4cb31a9f3560b293670de95e76c1f3cf2f9e1ca8 (diff)
downloadu-boot-8acdb70c101530df17a655f44a7c6f3ff6e5a6dc.tar.xz
tools: Fix patman launcher script.
There is no "run_patman" procedure in patman's __main__.py file, which would cause the following error at execution: "AttributeError: module 'patman.__main__' has no attribute 'run_patman'" Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--tools/patman/pyproject.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/pyproject.toml b/tools/patman/pyproject.toml
index c5dc7c7e27..a54211f706 100644
--- a/tools/patman/pyproject.toml
+++ b/tools/patman/pyproject.toml
@@ -23,7 +23,7 @@ classifiers = [
"Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues"
[project.scripts]
-patman = "patman.__main__:run_patman"
+patman = "patman.__main__"
[tool.setuptools.package-data]
patman = ["*.rst"]