--- 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()