Repository: incubator-airflow Updated Branches: refs/heads/master cb336464c -> 829755f41
[AIRFLOW-1185] Fix PyPi URL in templates Closes #2283 from maksim77/master Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/829755f4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/829755f4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/829755f4 Branch: refs/heads/master Commit: 829755f41852610c87177174b4f5a9f51601df14 Parents: cb33646 Author: Maksim Syomochkin <[email protected]> Authored: Wed May 10 09:26:53 2017 -0700 Committer: Chris Riccomini <[email protected]> Committed: Wed May 10 09:26:53 2017 -0700 ---------------------------------------------------------------------- airflow/www/templates/airflow/version.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/829755f4/airflow/www/templates/airflow/version.html ---------------------------------------------------------------------- diff --git a/airflow/www/templates/airflow/version.html b/airflow/www/templates/airflow/version.html index f294635..d8f341a 100644 --- a/airflow/www/templates/airflow/version.html +++ b/airflow/www/templates/airflow/version.html @@ -20,7 +20,7 @@ <h2>{{ title }}</h2> {% set version_label = 'Version' %} {% if airflow_version %} - <h4>{{ version_label }} : <a href="https://pypi.python.org/pypi/airflow/{{ airflow_version }}">{{ airflow_version }}</a></h4> + <h4>{{ version_label }} : <a href="https://pypi.python.org/pypi/apache-airflow/{{ airflow_version }}">{{ airflow_version }}</a></h4> {% else %} <h4>{{ version_label }} : Not Available</h4> {% endif %}
