Sun, 10 Apr 2022 12:50:18 +0200
Fixed an issue in the update check causing a wrong indication (was always true).
eric7/UI/UserInterface.py | file | annotate | diff | comparison | revisions |
--- a/eric7/UI/UserInterface.py Thu Apr 07 18:36:12 2022 +0200 +++ b/eric7/UI/UserInterface.py Sun Apr 10 12:50:18 2022 +0200 @@ -7589,8 +7589,9 @@ availableVersions = ( self.pipInterface.getPackageVersions("eric-ide") ) - updateAvailable = bool(v for v in availableVersions - if v > VersionOnly) + updateAvailable = bool( + [v for v in availableVersions if v > VersionOnly] + ) if updateAvailable: EricMessageBox.information( self,