Bug 1360498 - Added update snippet URL to failure in case of network issue r=whimboo

MozReview-Commit-ID: Hs9DR7z8aGS

--HG--
extra : rebase_source : a4e294ecdb0f3ac645a0bf1b31c8b510ee66332b
This commit is contained in:
Raajit Raj 2017-06-27 23:59:19 +05:30
Родитель 7f8bab3fa9
Коммит ee4654fab7
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -366,7 +366,8 @@ class SoftwareUpdate(BaseLib):
return response.read()
except urllib2.URLError:
exc, val, tb = sys.exc_info()
raise Exception, "Failed to retrieve update snippet: {}".format(val), tb
raise Exception, "Failed to retrieve update snippet '{}': {}".format(
update_url, val), tb
def get_formatted_update_url(self, force=False):
"""Retrieve the formatted AUS update URL the update snippet is retrieved from.