Revision: 14050
http://sourceforge.net/p/skim-app/code/14050
Author: hofman
Date: 2024-02-17 17:32:28 +0000 (Sat, 17 Feb 2024)
Log Message:
-----------
strip backslash from note in case it ends with an escaped newline
Modified Paths:
--------------
trunk/build_skim.py
Modified: trunk/build_skim.py
===================================================================
--- trunk/build_skim.py 2024-02-16 10:33:20 UTC (rev 14049)
+++ trunk/build_skim.py 2024-02-17 17:32:28 UTC (rev 14050)
@@ -363,7 +363,7 @@
if start != -1:
end = relNotes.find("\n", start, endNote)
if end > start:
- note = relNotes[start:end].strip()
+ note = relNotes[start:end].strip("\\ ")
return newFeatures, bugsFixed, note
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit