eric7/PluginManager/PluginRepositoryDialog.py

branch
eric7
changeset 8351
7d13e08ddb3f
parent 8318
962bce857696
child 8354
12ebd3934fef
diff -r 74a3b2a6a944 -r 7d13e08ddb3f eric7/PluginManager/PluginRepositoryDialog.py
--- a/eric7/PluginManager/PluginRepositoryDialog.py	Fri May 21 20:14:48 2021 +0200
+++ b/eric7/PluginManager/PluginRepositoryDialog.py	Sat May 22 11:14:43 2021 +0200
@@ -392,7 +392,7 @@
             self.__repositoryMissing = False
             f = QFile(self.pluginRepositoryFile)
             if f.open(QIODevice.OpenModeFlag.ReadOnly):
-                from E5XML.PluginRepositoryReader import PluginRepositoryReader
+                from EricXML.PluginRepositoryReader import PluginRepositoryReader
                 reader = PluginRepositoryReader(f, self.addEntry)
                 reader.readXML()
                 self.repositoryList.resizeColumnToContents(0)
@@ -964,7 +964,7 @@
     if os.path.exists(pluginRepositoryFile):
         f = QFile(pluginRepositoryFile)
         if f.open(QIODevice.OpenModeFlag.ReadOnly):
-            from E5XML.PluginRepositoryReader import PluginRepositoryReader
+            from EricXML.PluginRepositoryReader import PluginRepositoryReader
             reader = PluginRepositoryReader(f, registerPlugin)
             reader.readXML()
             

eric ide

mercurial