--- a/src/eric7/WebBrowser/VirusTotal/VirusTotalWhoisDialog.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/WebBrowser/VirusTotal/VirusTotalWhoisDialog.py Wed Jul 13 14:55:47 2022 +0200 @@ -18,10 +18,11 @@ """ Class implementing a dialog to show the 'whois' information. """ + def __init__(self, domain, whois, parent=None): """ Constructor - + @param domain domain name @type str @param whois whois information @@ -31,9 +32,9 @@ """ super().__init__(parent) self.setupUi(self) - + self.headerLabel.setText( - self.tr("<b>Whois information for domain {0}</b>").format(domain)) - self.headerPixmap.setPixmap( - UI.PixmapCache.getPixmap("virustotal")) + self.tr("<b>Whois information for domain {0}</b>").format(domain) + ) + self.headerPixmap.setPixmap(UI.PixmapCache.getPixmap("virustotal")) self.whoisEdit.setPlainText(whois)