summaryrefslogtreecommitdiff
path: root/bin/just-mr.py
diff options
context:
space:
mode:
authorKlaus Aehlig <aehlig@hilbert.linta.de>2022-12-02 09:48:59 +0100
committerKlaus Aehlig <aehlig@hilbert.linta.de>2022-12-02 09:48:59 +0100
commita47c809e3fee1bdbdfd6d6c0880cfe926a167b37 (patch)
treeb2603130ee08ebc097008909b6fdc836db7a5de1 /bin/just-mr.py
parent9885e30b138ec77a0aced5fd767a2ad724a9a31e (diff)
downloadjustbuild-a47c809e3fee1bdbdfd6d6c0880cfe926a167b37.tar.gz
just-mr: fix format-string interpolation
Diffstat (limited to 'bin/just-mr.py')
-rwxr-xr-xbin/just-mr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/just-mr.py b/bin/just-mr.py
index def75a4b..ce8557e5 100755
--- a/bin/just-mr.py
+++ b/bin/just-mr.py
@@ -566,7 +566,7 @@ def distdir_checkout(desc, repos):
for repo in distdir_repos:
# If repo does not exist, fail
if repo not in repos:
- print("No configuration for repository %s found" % ())
+ print("No configuration for repository %s found" % (repo,))
sys.exit(1)
repo_desc = repos[repo].get("repository", {})
repo_desc_type = repo_desc.get("type")