From ae896f4a33a658d490ff530c2447418e70876113 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 30 Aug 2015 00:42:46 -0700 Subject: [PATCH] Fix download link in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 610a7398735..337b3767c1e 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ HERE = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(HERE, PACKAGE_NAME, 'const.py')) as fp: VERSION = re.search("__version__ = ['\"]([^']+)['\"]\n", fp.read()).group(1) DOWNLOAD_URL = \ - 'https://github.com/balloob/home-assistant/tarball/{}'.format(VERSION) + 'https://github.com/balloob/home-assistant/archive/{}.zip'.format(VERSION) PACKAGES = find_packages() + \ ['homeassistant.external', 'homeassistant.external.noop',