From 33cf5dab019f267efb3a98415aefb2e9471ccb6b Mon Sep 17 00:00:00 2001 From: benoitc Date: Sat, 13 Mar 2010 22:16:58 +0100 Subject: [PATCH] with statement for py25 + bump release number --- gunicorn/__init__.py | 2 +- gunicorn/pidfile.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index 7bb14ea6..e0a7abbe 100644 --- a/gunicorn/__init__.py +++ b/gunicorn/__init__.py @@ -4,4 +4,4 @@ # See the NOTICE for more information. -__version__ = "0.6.5" +__version__ = "0.6.7" diff --git a/gunicorn/pidfile.py b/gunicorn/pidfile.py index 7252375d..e06d85fc 100644 --- a/gunicorn/pidfile.py +++ b/gunicorn/pidfile.py @@ -3,6 +3,8 @@ # This file is part of gunicorn released under the MIT license. # See the NOTICE for more information. +from __future__ import with_statement + import errno import os import tempfile