From 66eb3fa3ed269470155b08d63dc848b0760ed48b Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Fri, 11 Feb 2011 14:22:11 -0500 Subject: [PATCH] fixed issue with distutils that does not work in new version of python --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2