From: Benjamin Mako Hill Date: Fri, 11 Feb 2011 19:22:11 +0000 (-0500) Subject: fixed issue with distutils that does not work in new version of python X-Git-Url: https://projects.mako.cc/source/python-iso8601.debian/commitdiff_plain/66eb3fa3ed269470155b08d63dc848b0760ed48b fixed issue with distutils that does not work in new version of python --- diff --git a/setup.py b/setup.py index cdb61ec..2daf5b1 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ try: from setuptools import setup except ImportError: - from distutils import setup + from distutils.core import setup long_description="""Simple module to parse ISO 8601 dates