summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2022-05-15 21:27:58 -0500
committerMichael Merickel <michael@merickel.org>2022-05-15 21:27:58 -0500
commit0f0697dc20ab33c675d9eecb485f41ed26fa70b8 (patch)
tree0aeaee911077b9360a1482c287e427910f5d2810
parentd4287b56e56b765c9b4fa463cc4dd1191e3f9232 (diff)
downloadpastedeploy-git-0f0697dc20ab33c675d9eecb485f41ed26fa70b8.tar.gz
switch to f-string
-rw-r--r--src/paste/deploy/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/paste/deploy/config.py b/src/paste/deploy/config.py
index 0dae282..b174fa0 100644
--- a/src/paste/deploy/config.py
+++ b/src/paste/deploy/config.py
@@ -83,8 +83,8 @@ class DispatchingConfig:
popped = lst.pop()
if conf is not None and popped is not conf:
raise AssertionError(
- "The config popped (%s) is not the same as the config "
- "expected (%s)" % (popped, conf)
+ f"The config popped ({popped}) is not the same as the config "
+ f"expected ({conf})"
)
def push_process_config(self, conf):