diff -r ed835044c0cf -r 22c3928a1ab5 src/eric7/EricNetwork/EricNetworkProxyFactory.py --- a/src/eric7/EricNetwork/EricNetworkProxyFactory.py Wed Sep 25 14:05:07 2024 +0200 +++ b/src/eric7/EricNetwork/EricNetworkProxyFactory.py Wed Sep 25 14:07:40 2024 +0200 @@ -49,13 +49,13 @@ @param auth reference to the authenticator object @type QAuthenticator """ - from eric7.UI.AuthenticationDialog import AuthenticationDialog + from eric7.EricWidgets.EricAuthenticationDialog import EricAuthenticationDialog info = QCoreApplication.translate( "EricNetworkProxyFactory", "<b>Connect to proxy '{0}' using:</b>" ).format(Utilities.html_encode(proxy.hostName())) - dlg = AuthenticationDialog(info, proxy.user(), True) + dlg = EricAuthenticationDialog(info, proxy.user(), True) dlg.setData(proxy.user(), proxy.password()) if dlg.exec() == QDialog.DialogCode.Accepted: username, password = dlg.getData()