Fixed a bug determining the Django version (issue 331). release-5.3.3

Sat, 23 May 2020 11:14:43 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 23 May 2020 11:14:43 +0200
changeset 159
e08458938716
parent 158
33287e6ffb47
child 160
e2084f0a28a2

Fixed a bug determining the Django version (issue 331).

ChangeLog file | annotate | diff | comparison | revisions
PluginProjectDjango.py file | annotate | diff | comparison | revisions
PluginProjectDjango.zip file | annotate | diff | comparison | revisions
ProjectDjango/Project.py file | annotate | diff | comparison | revisions
--- a/ChangeLog	Sat May 02 14:55:33 2020 +0200
+++ b/ChangeLog	Sat May 23 11:14:43 2020 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 5.3.3:
+- bug fixes
+
 Version 5.3.2:
 - updated Russian translations
 
--- a/PluginProjectDjango.py	Sat May 02 14:55:33 2020 +0200
+++ b/PluginProjectDjango.py	Sat May 23 11:14:43 2020 +0200
@@ -28,7 +28,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "5.3.2"
+version = "5.3.3"
 className = "ProjectDjangoPlugin"
 packageName = "ProjectDjango"
 shortDescription = "Project support for Django projects."
Binary file PluginProjectDjango.zip has changed
--- a/ProjectDjango/Project.py	Sat May 02 14:55:33 2020 +0200
+++ b/ProjectDjango/Project.py	Sat May 23 11:14:43 2020 +0200
@@ -1628,7 +1628,7 @@
                 if finished and process.exitCode() == 0:
                     output = str(process.readAllStandardOutput(), ioEncoding,
                                  'replace')
-                djangoVersion = output.splitlines()[0].strip()
+                    djangoVersion = output.splitlines()[0].strip()
         
         return djangoVersion
     

eric ide

mercurial