Added python 2.5 support for with_statement.

(Fixed install error during 'pip install openslides' on python 2.5
systems.)
This commit is contained in:
Emanuel Schuetze 2012-11-29 15:00:06 +01:00
parent 48b530487b
commit a1b3e1c422

View File

@ -7,6 +7,9 @@
:license: GNU GPL, see LICENSE for more details. :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 setup
from setuptools import find_packages from setuptools import find_packages
from openslides import get_version from openslides import get_version