eric6/Debugger/StartDialog.py

branch
multi_processing
changeset 7802
eefe954f01e8
parent 7422
9a008ab4811b
parent 7780
41420f82c0ac
child 7856
82c461fa8a68
diff -r 39e3db2b4936 -r eefe954f01e8 eric6/Debugger/StartDialog.py
--- a/eric6/Debugger/StartDialog.py	Sun Jul 05 11:11:24 2020 +0200
+++ b/eric6/Debugger/StartDialog.py	Sun Oct 18 12:35:30 2020 +0200
@@ -7,7 +7,6 @@
 Module implementing the Start Program dialog.
 """
 
-
 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QComboBox, QInputDialog
 
 from E5Gui.E5PathPicker import E5PathPickerModes
@@ -320,7 +319,7 @@
             if history:
                 from .StartHistoryEditDialog import StartHistoryEditDialog
                 dlg = StartHistoryEditDialog(history, self)
-                if dlg.exec_() == QDialog.Accepted:
+            if dlg.exec() == QDialog.Accepted:
                     history = dlg.getHistory()
                     combo = combos[historiesIndex]
                     if combo:

eric ide

mercurial