From a1b3e1c4228b79f9397c517e99bcc172a8e257cd Mon Sep 17 00:00:00 2001 From: Emanuel Schuetze Date: Thu, 29 Nov 2012 15:00:06 +0100 Subject: [PATCH] Added python 2.5 support for with_statement. (Fixed install error during 'pip install openslides' on python 2.5 systems.) --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index ed1c3a018..24973a0bf 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,9 @@ :license: GNU GPL, see LICENSE for more details. """ +# for python 2.5 support +from __future__ import with_statement + from setuptools import setup from setuptools import find_packages from openslides import get_version