From 78f8cbf7996dd3a160bd0fa217db0df12f43df3f Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 9 Aug 2017 14:00:40 +0000 Subject: [PATCH] Fix src.fp.o URLs. --- roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 b/roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 index 7c0de1a535..11ad3be74d 100644 --- a/roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 +++ b/roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 @@ -66,13 +66,13 @@ DRY_RUN = False FASURL = 'https://admin.stg.fedoraproject.org/accounts' FASINSECURE = True PAGUREURL = 'https://stg.pagure.io' -PAGURE_DIST_GIT_URL = 'https://src.stg.fedoraproject.org/pagure/' +PAGURE_DIST_GIT_URL = 'https://src.stg.fedoraproject.org' MDAPIURL = 'https://apps.stg.fedoraproject.org/mdapi/' {% else %} FASURL = 'https://admin.fedoraproject.org/accounts' FASINSECURE = False PAGUREURL = 'https://pagure.io' -PAGURE_DIST_GIT_URL = 'https://src.fedoraproject.org/pagure/' +PAGURE_DIST_GIT_URL = 'https://src.fedoraproject.org' MDAPIURL = 'https://apps.fedoraproject.org/mdapi/' {% endif %}