src/eric7/Plugins/PluginWizardPyRegExp.py

branch
eric7
changeset 9413
80c06d472826
parent 9221
bf71ee032bb4
child 9473
3f23dbf37dbe
diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/Plugins/PluginWizardPyRegExp.py
--- a/src/eric7/Plugins/PluginWizardPyRegExp.py	Tue Oct 18 16:05:20 2022 +0200
+++ b/src/eric7/Plugins/PluginWizardPyRegExp.py	Tue Oct 18 16:06:21 2022 +0200
@@ -10,18 +10,18 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
-from EricWidgets.EricApplication import ericApp
-from EricGui.EricAction import EricAction
-from EricWidgets import EricMessageBox
+from eric7.EricWidgets.EricApplication import ericApp
+from eric7.EricGui.EricAction import EricAction
+from eric7.EricWidgets import EricMessageBox
 
-import UI.Info
+from eric7.UI import Info
 
 # Start-Of-Header
 name = "Python re Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = UI.Info.VersionOnly
+version = Info.VersionOnly
 className = "PyRegExpWizard"
 packageName = "__core__"
 shortDescription = "Show the Python re wizard."
@@ -106,7 +106,7 @@
         @param editor reference to the current editor
         @return the generated code (string)
         """
-        from WizardPlugins.PyRegExpWizard.PyRegExpWizardDialog import (
+        from eric7.Plugins.WizardPlugins.PyRegExpWizard.PyRegExpWizardDialog import (
             PyRegExpWizardDialog,
         )
 

eric ide

mercurial