summaryrefslogtreecommitdiff
path: root/src/paste/deploy/config.py
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2022-05-15 21:22:15 -0500
committerMichael Merickel <michael@merickel.org>2022-05-15 21:24:01 -0500
commitf18450e62b193782648ddba01355f89d36cfc726 (patch)
tree03bff17fa2a61991aedb4c18fb2a5a1d508c73ed /src/paste/deploy/config.py
parent1c50e71feec86a42c8ce5432106136f09edeb9e9 (diff)
downloadpastedeploy-git-f18450e62b193782648ddba01355f89d36cfc726.tar.gz
fix up strings and upgrade format syntax
Diffstat (limited to 'src/paste/deploy/config.py')
-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 3c24151..0dae282 100644
--- a/src/paste/deploy/config.py
+++ b/src/paste/deploy/config.py
@@ -101,7 +101,7 @@ class DispatchingConfig:
conf = self.current_conf()
if conf is None:
raise AttributeError(
- "No configuration has been registered for this process " "or thread"
+ "No configuration has been registered for this process or thread"
)
return getattr(conf, attr)
@@ -119,7 +119,7 @@ class DispatchingConfig:
conf = self.current_conf()
if conf is None:
raise TypeError(
- "No configuration has been registered for this process " "or thread"
+ "No configuration has been registered for this process or thread"
)
return conf[key]