summaryrefslogtreecommitdiff
path: root/src/paste/deploy/config.py
diff options
context:
space:
mode:
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]