summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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):