[Checkins] SVN: relstorage/trunk/setup.py Fixed import of distutils.core.setup. Thanks Chris Withers.

Shane Hathaway shane at hathawaymix.org
Tue Mar 25 15:39:02 EDT 2008


Log message for revision 84943:
  Fixed import of distutils.core.setup.  Thanks Chris Withers.

Changed:
  U   relstorage/trunk/setup.py

-=-
Modified: relstorage/trunk/setup.py
===================================================================
--- relstorage/trunk/setup.py	2008-03-25 18:42:46 UTC (rev 84942)
+++ relstorage/trunk/setup.py	2008-03-25 19:39:01 UTC (rev 84943)
@@ -43,7 +43,7 @@
 try:
     from setuptools import setup
 except ImportError:
-    from distutils import setup
+    from distutils.core import setup
     setuptools_args = {}
 else:
     setuptools_args = dict(



More information about the Checkins mailing list