From: Jaime Marquínez Ferrándiz Date: Mon, 28 Oct 2013 15:54:38 +0000 (+0100) Subject: setup.py: Make sure the setuptools_available variable is set X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=youtube-dl.git;a=commitdiff_plain;h=369a759acc9d12590355c6d9f96ef7852153570f setup.py: Make sure the setuptools_available variable is set Otherwise it would crash if it can't import setuptools. --- diff --git a/setup.py b/setup.py index f14f96377..aa7cfca08 100644 --- 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