Wed, 14 Oct 2020 19:22:22 +0200
Changed calls of exec_() into exec().
--- a/ChangeLog Tue Jun 23 19:56:28 2020 +0200 +++ b/ChangeLog Wed Oct 14 19:22:22 2020 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 3.1.0: +- changed exec_() into exec() + Version 3.0.0: - removed support for Python2
--- a/PluginWizardDataUriEncoder.py Tue Jun 23 19:56:28 2020 +0200 +++ b/PluginWizardDataUriEncoder.py Wed Oct 14 19:22:22 2020 +0200 @@ -21,7 +21,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "3.0.0" +version = "3.1.0" className = "WizardDataUriEncoderPlugin" packageName = "WizardDataUriEncoder" shortDescription = "Wizard for the creation of code for a base64 data URI." @@ -143,7 +143,7 @@ DataUriEncoderWizardDialog ) dlg = DataUriEncoderWizardDialog(None) - if dlg.exec_() == QDialog.Accepted: + if dlg.exec() == QDialog.Accepted: code = dlg.getCode() if code: line, index = editor.getCursorPosition()