diff -r c4d0cac9b5c9 -r aff39db4dacc eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py --- a/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Sat Sep 21 22:03:03 2019 +0200 +++ b/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Mon Sep 23 19:10:42 2019 +0200 @@ -261,8 +261,9 @@ """ Private slot to select the categories. """ - from .DotDesktopListSelectionDialog import \ + from .DotDesktopListSelectionDialog import ( DotDesktopListSelectionDialog + ) dlg = DotDesktopListSelectionDialog( self.__mainCategories, self.categoriesEdit.text(), ";", @@ -292,8 +293,9 @@ """ Private slot to select the OnlyShowIn environments. """ - from .DotDesktopListSelectionDialog import \ + from .DotDesktopListSelectionDialog import ( DotDesktopListSelectionDialog + ) dlg = DotDesktopListSelectionDialog( self.__showinEnvironments, self.onlyShowEdit.text(), ";") @@ -321,8 +323,9 @@ """ Private slot to select the NotShowIn environments. """ - from .DotDesktopListSelectionDialog import \ + from .DotDesktopListSelectionDialog import ( DotDesktopListSelectionDialog + ) dlg = DotDesktopListSelectionDialog( self.__showinEnvironments, self.notShowEdit.text(), ";")