youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 369a759acc9d12590355c6d9f96ef7852153570f
parent 79b3f6122840cf386cde6c9ec13453121944c7b0
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Mon, 28 Oct 2013 16:54:38 +0100

setup.py: Make sure the setuptools_available variable is set

Otherwise it would crash if it can't import setuptools.

Diffstat:
Msetup.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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