Skip to content

Commit 21b9803

Browse files
author
Developer
committed
Fixed bug in strAfter that truncated the last character from the string.
1 parent 15b3fe0 commit 21b9803

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PropellerLoad.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,4 @@ def strAfter(string, startStr):
224224
if sPos == -1: return None
225225
sPos += len(startStr)
226226
# Return string after
227-
return string[sPos:-1]
227+
return string[sPos:]

0 commit comments

Comments
 (0)