From b24a6fd4b56d9a89ac1ce507f6f545c509306ceb Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Fri, 23 Mar 2018 11:21:19 -0700 Subject: [PATCH] Fix setup.py, comma makes download_url a tuple (#4676) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bdb0d5e42a..f8f785e721 100644 --- a/setup.py +++ b/setup.py @@ -104,7 +104,8 @@ setup( author_email='maximebeauchemin@gmail.com', url='https://github.com/apache/incubator-superset', download_url=( - 'https://github.com/apache/incubator-superset/tarball/' + version_string, + 'https://github.com' + '/apache/incubator-superset/tarball/' + version_string ), classifiers=[ 'Programming Language :: Python :: 2.7',