Blame SOURCES/BZ-1082648-curl-77-error-message.patch

babe2e
commit e19463a8781fa5de74e62a09684259309b2f89cf
babe2e
Author: Valentina Mukhamedzhanova <vmukhame@redhat.com>
babe2e
Date:   Mon Sep 22 14:45:10 2014 +0200
babe2e
babe2e
    Add a comprehensive error message to pycurl error 77. BZ 1082648
babe2e
babe2e
diff --git a/urlgrabber/grabber.py b/urlgrabber/grabber.py
babe2e
index fd31123..961d18a 100644
babe2e
--- a/urlgrabber/grabber.py
babe2e
+++ b/urlgrabber/grabber.py
babe2e
@@ -1576,6 +1576,7 @@ class PyCurlFileObject(object):
babe2e
                              67 : _("Authentication failure"),
babe2e
                              70 : _("Out of disk space on server"),
babe2e
                              73 : _("Remove file exists"),
babe2e
+                             77 : _("Problem with the SSL CA cert (path? access rights?)"),
babe2e
                               }
babe2e
                 errstr = str(e.args[1]) or pyerr2str.get(errcode, '<Unknown>')
babe2e
                 if code and not 200 <= code <= 299: