don't use map at all

This commit is contained in:
benoitc 2012-11-16 11:16:19 +01:00
parent 4da8f8067d
commit 155b3c3823

View File

@ -4,5 +4,5 @@
# See the NOTICE for more information.
version_info = (0, 16, 0)
__version__ = ".".join(map(str, version_info))
__version__ = ".".join([str(v) for v in version_info])
SERVER_SOFTWARE = "gunicorn/%s" % __version__