From 92f09ad57cc1af2d81a25c9fa0366e97170dd5db Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Oct 04 2017 14:12:33 +0000 Subject: fix the koji url for clean-overrides clean-overrides.py was using the http koji url, the redirection oon the server to https:// breaks the script, we need to use the https:// url when using the koji api Signed-off-by: Dennis Gilmore --- diff --git a/scripts/clean-overrides.py b/scripts/clean-overrides.py index 4132be1..0cc88a1 100755 --- a/scripts/clean-overrides.py +++ b/scripts/clean-overrides.py @@ -47,7 +47,7 @@ elif len(sys.argv) < 3: else: overtag, updatetag = sys.argv[1:] -kojisession = koji.ClientSession('http://koji.fedoraproject.org/kojihub') +kojisession = koji.ClientSession('https://koji.fedoraproject.org/kojihub') f7overrides = kojisession.listTagged(overtag, inherit=False) f7stables = kojisession.listTagged(updatetag, latest=True)