Revision: 12386 http://sourceforge.net/p/skim-app/code/12386 Author: hofman Date: 2021-06-29 09:31:05 +0000 (Tue, 29 Jun 2021) Log Message: ----------- No need to explicitly check for length of appcast
Modified Paths: -------------- trunk/build_skim.py Modified: trunk/build_skim.py =================================================================== --- trunk/build_skim.py 2021-06-29 09:09:14 UTC (rev 12385) +++ trunk/build_skim.py 2021-06-29 09:31:05 UTC (rev 12386) @@ -460,7 +460,7 @@ insert = -1 start = -1 end = -1 - if len(appcastString) > 0 and appcastString.find("<title>Version " + newVersionString + "</title>") == -1: + if appcastString.find("<title>Version " + newVersionString + "</title>") == -1: insert = appcastString.find("<item>") start = newItemString.find("<item>") end = newItemString.find("</item>") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. _______________________________________________ Skim-app-commit mailing list Skim-app-commit@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/skim-app-commit