diff options
author | Klaus Aehlig <aehlig@hilbert.linta.de> | 2022-12-02 09:48:59 +0100 |
---|---|---|
committer | Klaus Aehlig <aehlig@hilbert.linta.de> | 2022-12-02 09:48:59 +0100 |
commit | a47c809e3fee1bdbdfd6d6c0880cfe926a167b37 (patch) | |
tree | b2603130ee08ebc097008909b6fdc836db7a5de1 /bin | |
parent | 9885e30b138ec77a0aced5fd767a2ad724a9a31e (diff) | |
download | justbuild-a47c809e3fee1bdbdfd6d6c0880cfe926a167b37.tar.gz |
just-mr: fix format-string interpolation
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/just-mr.py | 2 |
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") |