Fix gunicorn.http.__all__.

All parameters should be a str type.
This commit is contained in:
Berker Peksag 2015-01-30 22:30:56 +02:00
parent e79900b465
commit f22267a1be

View File

@ -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']