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

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