From ccc7f6985bb094875d7d4248b127c382070d8f5e Mon Sep 17 00:00:00 2001 From: Alexey Nazarov Date: Fri, 19 Jul 2024 18:08:10 +0200 Subject: [PATCH] Replace f-strings with format() to ensure compatibility with Python 2.7 --- supervisor/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/options.py b/supervisor/options.py index 22f712850..a0190eaec 100644 --- a/supervisor/options.py +++ b/supervisor/options.py @@ -846,7 +846,7 @@ def process_config(self, do_usage=True): if self.minprocs is None: self.minprocs = 200 - print(f"After setting defaults - minfds: {self.minfds}, minprocs: {self.minprocs}") + print("After setting defaults - minfds: %s, minprocs: %s" % (self.minfds, self.minprocs))