eric7/UI/EmailDialog.py

branch
eric7
changeset 8354
12ebd3934fef
parent 8318
962bce857696
child 8356
68ec9c3d4de5
diff -r 799196d0b05d -r 12ebd3934fef eric7/UI/EmailDialog.py
--- a/eric7/UI/EmailDialog.py	Sat May 22 12:54:57 2021 +0200
+++ b/eric7/UI/EmailDialog.py	Sat May 22 16:52:45 2021 +0200
@@ -146,10 +146,10 @@
         """
         if self.__helpDialog is None:
             try:
-                from E5Network.E5GoogleMail import GoogleMailHelp
+                from EricNetwork.EricGoogleMail import GoogleMailHelp
                 helpStr = GoogleMailHelp()
             except ImportError:
-                from E5Network.E5GoogleMailHelpers import getInstallCommand
+                from EricNetwork.EricGoogleMailHelpers import getInstallCommand
                 helpStr = self.tr(
                     "<p>The Google Mail Client API is not installed."
                     " Use <code>{0}</code> to install it.</p>"
@@ -387,10 +387,10 @@
         @param msg email message to be sent
         @type email.mime.text.MIMEBase
         """
-        from E5Network.E5GoogleMail import E5GoogleMail
+        from EricNetwork.EricGoogleMail import EricGoogleMail
         
         if self.__googleMail is None:
-            self.__googleMail = E5GoogleMail(self)
+            self.__googleMail = EricGoogleMail(self)
             self.__googleMail.sendResult.connect(self.__gmailSendResult)
         
         self.__googleMail.sendMessage(msg)

eric ide

mercurial