setup.py: Make sure the setuptools_available variable is set
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Mon, 28 Oct 2013 15:54:38 +0000 (16:54 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Mon, 28 Oct 2013 15:54:48 +0000 (16:54 +0100)
Otherwise it would crash if it can't import setuptools.

setup.py

index f14f9637722e03aceb0aa96a9da1c65d91ef776e..aa7cfca0862b1f4ba2cfd220fd570ca63bcfda7e 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -11,6 +11,7 @@ try:
     setuptools_available = True
 except ImportError:
     from distutils.core import setup
+    setuptools_available = False
 
 try:
     # This will create an exe that needs Microsoft Visual C++ 2008