--- a/src/eric7/Preferences/ConfigurationPages/CondaPage.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Preferences/ConfigurationPages/CondaPage.py Tue Oct 18 16:06:21 2022 +0200 @@ -7,12 +7,12 @@ Module implementing the conda configuration page. """ -from EricWidgets.EricPathPicker import EricPathPickerModes +from eric7.EricWidgets.EricPathPicker import EricPathPickerModes from .ConfigurationPageBase import ConfigurationPageBase from .Ui_CondaPage import Ui_CondaPage -import Preferences +from eric7 import Preferences class CondaPage(ConfigurationPageBase, Ui_CondaPage): @@ -47,7 +47,7 @@ if condaExecutable != self.__condaExecutable: Preferences.setConda("CondaExecutable", condaExecutable) - import CondaInterface + from eric7 import CondaInterface CondaInterface.resetInterface()