From cfa54b049123c1f8eb98760580e866626aa5bbf9 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Sat, 17 Mar 2012 16:02:29 -0400 Subject: [PATCH] Fixing a typo. --- pecan/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pecan/debug.py b/pecan/debug.py index 1c4a8c8..a465c21 100644 --- a/pecan/debug.py +++ b/pecan/debug.py @@ -122,7 +122,7 @@ class DebugMiddleware(object): def __call__(self, environ, start_response): assert not environ['wsgi.multiprocess'], ( - "The EvalException middleware is not usable in a " + "The DebugMiddleware middleware is not usable in a " "multi-process environment") try: return self.app(environ, start_response)