Revision: 28759
http://sourceforge.net/p/bibdesk/svn/28759
Author: hofman
Date: 2024-02-17 17:31:35 +0000 (Sat, 17 Feb 2024)
Log Message:
-----------
strip backslash from note instead of looking for newline with backslash
Modified Paths:
--------------
trunk/bibdesk/build_release.py
Modified: trunk/bibdesk/build_release.py
===================================================================
--- trunk/bibdesk/build_release.py 2024-02-17 17:26:12 UTC (rev 28758)
+++ trunk/bibdesk/build_release.py 2024-02-17 17:31:35 UTC (rev 28759)
@@ -367,9 +367,9 @@
if start != -1:
start += len(noteString4)
if start != -1:
- end = relNotes.find("\\\n", start, endNote)
+ 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.
_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit