Revision: 13962
          http://sourceforge.net/p/skim-app/code/13962
Author:   hofman
Date:     2023-12-22 17:01:37 +0000 (Fri, 22 Dec 2023)
Log Message:
-----------
copy string to end of search string

Modified Paths:
--------------
    trunk/build_skim.py

Modified: trunk/build_skim.py
===================================================================
--- trunk/build_skim.py 2023-12-22 16:57:07 UTC (rev 13961)
+++ trunk/build_skim.py 2023-12-22 17:01:37 UTC (rev 13962)
@@ -381,7 +381,8 @@
     key = ""
 
     if start != -1 and stop != -1:
-        key = pwoutput[start:stop] + stopString
+        stop += len(stopString)
+        key = pwoutput[start:stop]
         
         # replace RTF end-of-lines
         key = key.replace("\\134\\012", "\n")

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

Reply via email to