From f22267a1bed6520a1531f33b30130da556dd1348 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Fri, 30 Jan 2015 22:30:56 +0200 Subject: [PATCH] Fix gunicorn.http.__all__. All parameters should be a str type. --- gunicorn/http/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/http/__init__.py b/gunicorn/http/__init__.py index dc7bacd6..1da6f3ec 100644 --- a/gunicorn/http/__init__.py +++ b/gunicorn/http/__init__.py @@ -6,4 +6,4 @@ from gunicorn.http.message import Message, Request from gunicorn.http.parser import RequestParser -__all__ = [Message, Request, RequestParser] +__all__ = ['Message', 'Request', 'RequestParser']