Skip to content

Commit ccc7f69

Browse files
committed
Replace f-strings with format() to ensure compatibility with Python 2.7
1 parent 2d63ef7 commit ccc7f69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

supervisor/options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ def process_config(self, do_usage=True):
846846
if self.minprocs is None:
847847
self.minprocs = 200
848848

849-
print(f"After setting defaults - minfds: {self.minfds}, minprocs: {self.minprocs}")
849+
print("After setting defaults - minfds: %s, minprocs: %s" % (self.minfds, self.minprocs))
850850

851851

852852

0 commit comments

Comments
 (0)