--- a/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Mon Oct 05 19:51:55 2020 +0200 +++ b/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Tue Oct 06 17:52:44 2020 +0200 @@ -269,7 +269,7 @@ self.categoriesEdit.text(), ";", subEntries=self.__subCategories, allowMultiMain=False) - if dlg.exec_() == QDialog.Accepted: + if dlg.exec() == QDialog.Accepted: categories = dlg.getData(";", True) self.categoriesEdit.setText(categories) @@ -299,7 +299,7 @@ dlg = DotDesktopListSelectionDialog( self.__showinEnvironments, self.onlyShowEdit.text(), ";") - if dlg.exec_() == QDialog.Accepted: + if dlg.exec() == QDialog.Accepted: environments = dlg.getData(";", True) self.onlyShowEdit.setText(environments) @@ -329,7 +329,7 @@ dlg = DotDesktopListSelectionDialog( self.__showinEnvironments, self.notShowEdit.text(), ";") - if dlg.exec_() == QDialog.Accepted: + if dlg.exec() == QDialog.Accepted: environments = dlg.getData(";", True) self.notShowEdit.setText(environments)