You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2018/03/23 18:21:21 UTC

[incubator-superset] branch master updated: Fix setup.py, comma makes download_url a tuple (#4676)

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new b24a6fd  Fix setup.py, comma makes download_url a tuple (#4676)
b24a6fd is described below

commit b24a6fd4b56d9a89ac1ce507f6f545c509306ceb
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Fri Mar 23 11:21:19 2018 -0700

    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 bdb0d5e..f8f785e 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',

-- 
To stop receiving notification emails like this one, please contact
maximebeauchemin@apache.org.