From f0deed152924ea8f43fd923a5a29d0abe9582d52 Mon Sep 17 00:00:00 2001 From: benoitc Date: Thu, 25 Oct 2012 20:57:23 +0200 Subject: [PATCH] fix from @sirkonst feedback --- gunicorn/http/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/http/errors.py b/gunicorn/http/errors.py index 5baf5b69..7719f285 100644 --- a/gunicorn/http/errors.py +++ b/gunicorn/http/errors.py @@ -3,7 +3,7 @@ # This file is part of gunicorn released under the MIT license. # See the NOTICE for more information. -class ParseException(BaseException): +class ParseException(Exception): pass class NoMoreData(IOError):