Fixed a bug in the application history handling of Project.py. release-5.0.9

Sat, 04 Nov 2017 15:22:08 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 04 Nov 2017 15:22:08 +0100
changeset 108
e6b5b87decc1
parent 107
bebba9aef7c5
child 109
0f579ef4f7ad

Fixed a bug in the application history handling of Project.py.

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	Thu Oct 26 19:14:37 2017 +0200
+++ b/ChangeLog	Sat Nov 04 15:22:08 2017 +0100
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 5.0.9:
+- bug fix
+
 Version 5.0.8:
 - updated Russian translations provided by Alexander Barkoff
 
--- a/PluginProjectDjango.py	Thu Oct 26 19:14:37 2017 +0200
+++ b/PluginProjectDjango.py	Sat Nov 04 15:22:08 2017 +0100
@@ -28,7 +28,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "5.0.8"
+version = "5.0.9"
 className = "ProjectDjangoPlugin"
 packageName = "ProjectDjango"
 shortDescription = "Project support for Django projects."
Binary file PluginProjectDjango.zip has changed
--- a/ProjectDjango/Project.py	Thu Oct 26 19:14:37 2017 +0200
+++ b/ProjectDjango/Project.py	Sat Nov 04 15:22:08 2017 +0100
@@ -1555,7 +1555,8 @@
         
         maxRecentApps = self.__plugin.getPreferences("RecentNumberApps")
         if len(self.__recentApplications) > maxRecentApps:
-            self.__recentApplications = self.recent[:maxRecentApps]
+            self.__recentApplications = \
+                self.__recentApplications[:maxRecentApps]
         self.__saveRecentApplications()
     
     def getProjectPath(self):

eric ide

mercurial