diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-10-28 16:54:38 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-10-28 16:54:48 +0100 |
commit | 369a759acc9d12590355c6d9f96ef7852153570f (patch) | |
tree | 95e1d15df7c9982b4e06785875c4e14c21560534 /setup.py | |
parent | 79b3f6122840cf386cde6c9ec13453121944c7b0 (diff) |
setup.py: Make sure the setuptools_available variable is set
Otherwise it would crash if it can't import setuptools.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |