From 89ac49f659bb31312aa36b9db4d64679f87e2e6d Mon Sep 17 00:00:00 2001 From: Marcus Huewe Date: Fri, 5 Feb 2016 11:28:47 +0100 Subject: [PATCH] fetch.py: reworded Fetcher.failureReport message a bit Based on PR#182. --- osc/fetch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osc/fetch.py b/osc/fetch.py index d9ea365a..21cc3d64 100644 --- a/osc/fetch.py +++ b/osc/fetch.py @@ -96,8 +96,8 @@ class Fetcher: """failure output for failovers from urlgrabber""" if errobj.url.startswith('file://'): return {} - print('Trying openSUSE Build Service server for %s (%s), not found at %s.' - % (self.curpac, self.curpac.project, errobj.url.split('/')[2])) + print('%s/%s: attempting download from api, since not found at %s' + % (self.curpac.project, self.curpac, errobj.url.split('/')[2])) return {} def __add_cpio(self, pac):