PluginCxFreeze: modified the check for a defined project main script to make it more robust. release-6.0.11

Sat, 28 Jul 2018 19:04:08 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 28 Jul 2018 19:04:08 +0200
changeset 115
f2dd7703b9c2
parent 114
2ab16efd07f0
child 116
2a8c2370c2f0

PluginCxFreeze: modified the check for a defined project main script to make it more robust.

ChangeLog file | annotate | diff | comparison | revisions
PluginCxFreeze.py file | annotate | diff | comparison | revisions
PluginCxFreeze.zip file | annotate | diff | comparison | revisions
--- a/ChangeLog	Sun Apr 22 14:29:08 2018 +0200
+++ b/ChangeLog	Sat Jul 28 19:04:08 2018 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 6.0.11:
+- bug fixes
+
 Version 6.0.10:
 - added a separator to the project packagers menu
 
--- a/PluginCxFreeze.py	Sun Apr 22 14:29:08 2018 +0200
+++ b/PluginCxFreeze.py	Sat Jul 28 19:04:08 2018 +0200
@@ -26,7 +26,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.0.10"
+version = "6.0.11"
 className = "CxFreezePlugin"
 packageName = "CxFreeze"
 shortDescription = "Show the CxFreeze dialogs."
@@ -342,7 +342,7 @@
         Private slot to handle the cxfreeze execution.
         """
         project = e5App().getObject("Project")
-        if project.getMainScript() == "":
+        if not project.getMainScript():
             # no main script defined
             E5MessageBox.critical(
                 self.__ui,
Binary file PluginCxFreeze.zip has changed

eric ide

mercurial