From a3eba12af423434a1e1372a44c1f1806363a9a2e Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Jun 18 2019 00:53:24 +0000 Subject: Rediff patch Signed-off-by: Adam Williamson --- diff --git a/0001-Fix-downloading-packages-for-updates-with-multiple-b.patch b/0001-Fix-downloading-packages-for-updates-with-multiple-b.patch index f9558fb..36d9534 100644 --- a/0001-Fix-downloading-packages-for-updates-with-multiple-b.patch +++ b/0001-Fix-downloading-packages-for-updates-with-multiple-b.patch @@ -1,4 +1,4 @@ -From b720d8c0ad556557f2a615b541f229abc595c9e3 Mon Sep 17 00:00:00 2001 +From 85be35190444df56175559ad2d839e52d99d7f77 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 17 Jun 2019 17:39:41 -0700 Subject: [PATCH] Fix downloading packages for updates with multiple builds @@ -25,10 +25,10 @@ Signed-off-by: Adam Williamson 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bodhi/client/__init__.py b/bodhi/client/__init__.py -index f5e4eb27..d3170002 100644 +index d9f6998a..f325fd53 100644 --- a/bodhi/client/__init__.py +++ b/bodhi/client/__init__.py -@@ -738,12 +738,12 @@ def download(url, **kwargs): +@@ -724,12 +724,12 @@ def download(url, **kwargs): # Not sure if we need a check for > expecteds, I don't # *think* that should ever be possible for these opts. @@ -36,7 +36,7 @@ index f5e4eb27..d3170002 100644 - if debuginfo: - args.append('--debuginfo') for update in resp.updates: - click.echo(f"Downloading packages from {update['alias']}") + click.echo("Downloading packages from {0}".format(update['alias'])) for build in update['builds']: + args = ['koji', 'download-build'] + if debuginfo: