--- a/src/eric7/EricNetwork/EricSslCertificateSelectionDialog.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/EricNetwork/EricSslCertificateSelectionDialog.py Tue Oct 18 16:06:21 2022 +0200 @@ -17,8 +17,8 @@ from .Ui_EricSslCertificateSelectionDialog import Ui_EricSslCertificateSelectionDialog -import Utilities -import UI.PixmapCache +from eric7 import Utilities +from eric7.EricGui import EricPixmapCache class EricSslCertificateSelectionDialog(QDialog, Ui_EricSslCertificateSelectionDialog): @@ -40,7 +40,7 @@ super().__init__(parent) self.setupUi(self) - self.viewButton.setIcon(UI.PixmapCache.getIcon("certificates")) + self.viewButton.setIcon(EricPixmapCache.getIcon("certificates")) self.buttonBox.button(QDialogButtonBox.OK).setEnabled(False) self.viewButton.setEnabled(False) @@ -114,7 +114,7 @@ Private slot to show data of the selected certificate. """ with contextlib.suppress(ImportError): - from EricNetwork.EricSslCertificatesInfoDialog import ( + from eric7.EricNetwork.EricSslCertificatesInfoDialog import ( EricSslCertificatesInfoDialog, )