Skip to content

Commit

Permalink
Replace f-strings with format() to ensure compatibility with Python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeinazarov committed Jul 19, 2024
1 parent 2d63ef7 commit ccc7f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supervisor/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))



Expand Down

0 comments on commit ccc7f69

Please sign in to comment.