Changed calls of exec_() into exec(). release-3.1.0

Wed, 14 Oct 2020 19:22:22 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 14 Oct 2020 19:22:22 +0200
changeset 37
833c3ea0ca93
parent 36
6b9c5f07103e
child 38
6f0a0b48e80b

Changed calls of exec_() into exec().

ChangeLog file | annotate | diff | comparison | revisions
PluginWizardDataUriEncoder.py file | annotate | diff | comparison | revisions
PluginWizardDataUriEncoder.zip file | annotate | diff | comparison | revisions
--- 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()
Binary file PluginWizardDataUriEncoder.zip has changed

eric ide

mercurial