PluginManager/PluginRepositoryDialog.py

changeset 2360
b6bf3925e3e1
parent 2354
c63de4af553d
child 2404
cba0ff902c2b
equal deleted inserted replaced
2359:ef81d2d0a031 2360:b6bf3925e3e1
503 Private slot to handle SSL errors. 503 Private slot to handle SSL errors.
504 504
505 @param reply reference to the reply object (QNetworkReply) 505 @param reply reference to the reply object (QNetworkReply)
506 @param errors list of SSL errors (list of QSslError) 506 @param errors list of SSL errors (list of QSslError)
507 """ 507 """
508 ignore = self.__sslErrorHandler.sslErrorsReply(reply, errors)[0] 508 ignored = self.__sslErrorHandler.sslErrorsReply(reply, errors)[0]
509 if not ignore: 509 if ignored == E5SslErrorHandler.NotIgnored:
510 self.__downloadCancelled = True 510 self.__downloadCancelled = True
511 511
512 def getDownloadedPlugins(self): 512 def getDownloadedPlugins(self):
513 """ 513 """
514 Public method to get the list of recently downloaded plugin files. 514 Public method to get the list of recently downloaded plugin files.

eric ide

mercurial