src/eric7/EricNetwork/EricNetworkProxyFactory.py

branch
eric7
changeset 10925
22c3928a1ab5
parent 10439
21c28b0f9e41
child 10928
46651e194fbe
--- 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()

eric ide

mercurial