From 5b20eff7d365cf7fade0e1ecc992b4c970424b3e Mon Sep 17 00:00:00 2001
From: "Antoine R. Dumont (@ardumont)" <antoine.romain.dumont@gmail.com>
Date: Mon, 17 Sep 2018 15:58:41 +0200
Subject: [PATCH] pypi.lister: Use https://pypi.org/project/<name>/ uri as
 project_url

The previous url is correct and redirects to this new one.

Related T422
---
 swh/lister/pypi/lister.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swh/lister/pypi/lister.py b/swh/lister/pypi/lister.py
index 4d1b54eb..caa8089d 100644
--- a/swh/lister/pypi/lister.py
+++ b/swh/lister/pypi/lister.py
@@ -50,7 +50,7 @@ class PyPILister(ListerOnePageApiTransport, SimpleLister):
 
         """
         return (
-            'https://pypi.org/pypi/%s/' % repo_name,
+            'https://pypi.org/project/%s/' % repo_name,
             'https://pypi.org/pypi/%s/json' % repo_name
         )
 
-- 
GitLab