From 19c3ea3fddc4c43f206b6bc2410d32c31eed1a12 Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Thu, 12 Sep 2024 21:29:43 +1200 Subject: [PATCH] tandoor-recipes: Fix formatting string And clarify the message, since some of the URLs it refuses to try to visit are just "#". --- nixos/tests/tandoor-recipes-script-name.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/tandoor-recipes-script-name.nix b/nixos/tests/tandoor-recipes-script-name.nix index 9010ffa3ccfa..6216d67b8084 100644 --- a/nixos/tests/tandoor-recipes-script-name.nix +++ b/nixos/tests/tandoor-recipes-script-name.nix @@ -78,7 +78,7 @@ import ./make-test-python.nix ( elif value.startswith("/"): self.urls.append(f"{origin_url}{value}") else: - print("Ignoring external URL: {value}") + print(f"Ignoring non-path URL: {value}") break