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

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