Merge pull request #972 from berkerpeksag/small-impr

Small improvements
This commit is contained in:
Randall Leeds 2015-02-02 12:48:02 -08:00
commit 48cdfcc267
2 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,10 @@
#
# Gunicorn documentation build configuration file
#
import sys, os
import os
import sys
import time
DOCS_DIR = os.path.abspath(os.path.dirname(__file__))
@ -19,7 +22,7 @@ master_doc = 'index'
# General information about the project.
project = u'Gunicorn'
copyright = u'2009-2015, Benoit Chesneau'
copyright = u'2009-%s, Benoit Chesneau' % time.strftime('%Y')
# gunicorn version
import gunicorn
release = version = gunicorn.__version__

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