202 """ |
202 """ |
203 Private slot to show certificate information. |
203 Private slot to show certificate information. |
204 """ |
204 """ |
205 from .EricSslCertificatesInfoDialog import EricSslCertificatesInfoDialog |
205 from .EricSslCertificatesInfoDialog import EricSslCertificatesInfoDialog |
206 |
206 |
207 dlg = EricSslCertificatesInfoDialog(self.__configuration.peerCertificateChain()) |
207 dlg = EricSslCertificatesInfoDialog( |
|
208 self.__configuration.peerCertificateChain(), parent=self |
|
209 ) |
208 dlg.exec() |
210 dlg.exec() |
209 |
211 |
210 def accept(self): |
212 def accept(self): |
211 """ |
213 """ |
212 Public method to accept the widget. |
214 Public method to accept the widget. |