Adapted the import statements to the new structure. eric7 release-10.1.0

Mon, 24 Oct 2022 16:50:45 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 24 Oct 2022 16:50:45 +0200
branch
eric7
changeset 51
619765dd3aa8
parent 50
4d34c264a71d
child 52
3ce7f83ea6fb

Adapted the import statements to the new structure.

ChangeLog file | annotate | diff | comparison | revisions
PluginWizardDataUriEncoder.py file | annotate | diff | comparison | revisions
PluginWizardDataUriEncoder.zip file | annotate | diff | comparison | revisions
WizardDataUriEncoder/DataUriEncoderWizardDialog.py file | annotate | diff | comparison | revisions
--- a/ChangeLog	Tue Sep 20 17:00:19 2022 +0200
+++ b/ChangeLog	Mon Oct 24 16:50:45 2022 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 10.1.0
+- adapted the import statements to the new structure
+
 Version 10.0.0:
 - first release of the eric7 variant
 
--- a/PluginWizardDataUriEncoder.py	Tue Sep 20 17:00:19 2022 +0200
+++ b/PluginWizardDataUriEncoder.py	Mon Oct 24 16:50:45 2022 +0200
@@ -12,16 +12,16 @@
 from PyQt6.QtCore import QObject, QTranslator
 from PyQt6.QtWidgets import QDialog
 
-from EricWidgets.EricApplication import ericApp
-from EricGui.EricAction import EricAction
-from EricWidgets import EricMessageBox
+from eric7.EricGui.EricAction import EricAction
+from eric7.EricWidgets import EricMessageBox
+from eric7.EricWidgets.EricApplication import ericApp
 
 # Start-of-Header
 name = "Base64 Data URI Encoder Wizard Plug-in"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "10.0.0"
+version = "10.1.0"
 className = "WizardDataUriEncoderPlugin"
 packageName = "WizardDataUriEncoder"
 shortDescription = "Wizard for the creation of code for a base64 data URI."
Binary file PluginWizardDataUriEncoder.zip has changed
--- a/WizardDataUriEncoder/DataUriEncoderWizardDialog.py	Tue Sep 20 17:00:19 2022 +0200
+++ b/WizardDataUriEncoder/DataUriEncoderWizardDialog.py	Mon Oct 24 16:50:45 2022 +0200
@@ -17,14 +17,13 @@
 from PyQt6.QtCore import pyqtSlot
 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QApplication, QInputDialog
 
-from EricWidgets import EricMessageBox
-from EricWidgets.EricPathPicker import EricPathPickerModes
+from eric7 import Preferences, Utilities
+
+from eric7.EricWidgets import EricMessageBox
+from eric7.EricWidgets.EricPathPicker import EricPathPickerModes
 
 from .Ui_DataUriEncoderWizardDialog import Ui_DataUriEncoderWizardDialog
 
-import Preferences
-import Utilities
-
 
 DataUriTemplates = {
     "Python3": "\n".join(

eric ide

mercurial