195 |
195 |
196 def __showCertificateInfos(self): |
196 def __showCertificateInfos(self): |
197 """ |
197 """ |
198 Private slot to show certificate information. |
198 Private slot to show certificate information. |
199 """ |
199 """ |
200 from .EricSslCertificatesInfoDialog import EricSslCertificatesInfoDialog |
200 from .EricSslCertificatesInfoDialog import ( |
|
201 EricSslCertificatesInfoDialog |
|
202 ) |
201 dlg = EricSslCertificatesInfoDialog( |
203 dlg = EricSslCertificatesInfoDialog( |
202 self.__configuration.peerCertificateChain()) |
204 self.__configuration.peerCertificateChain()) |
203 dlg.exec() |
205 dlg.exec() |
204 |
206 |
205 def accept(self): |
207 def accept(self): |