Fixed an issue with the version check and the changed versions file on the server. 5_2_x

Sat, 11 Feb 2012 19:05:21 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 11 Feb 2012 19:05:21 +0100
branch
5_2_x
changeset 1614
adb338dc0d7f
parent 1612
9ec08e2f1525
child 1618
b3cddb1f9a7a

Fixed an issue with the version check and the changed versions file on the server.
(transplanted from bafe0eeb0f302e7ae81159d91e6b1abc9d5dedbd)

UI/UserInterface.py file | annotate | diff | comparison | revisions
--- a/UI/UserInterface.py	Sat Feb 11 18:19:25 2012 +0100
+++ b/UI/UserInterface.py	Sat Feb 11 19:05:21 2012 +0100
@@ -5735,7 +5735,7 @@
         try:
             if "-snapshot-" in Version:
                 # check snapshot version
-                if versions[2] > Version:
+                if versions[2][0] == "5" and versions[2] > Version:
                     res = E5MessageBox.yesNo(self,
                         self.trUtf8("Update available"),
                         self.trUtf8("""The update to <b>{0}</b> of eric5 is available"""

eric ide

mercurial