mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-03 00:18:20 +00:00
Fix discrepancy with LSL in llCSV2List.
In LSL, llCSV2List eats the very first space in the string if there's one. This patch implements that behaviour.
This commit is contained in:
parent
14f70c93b4
commit
b0e5a50a59
1 changed files with 1 additions and 1 deletions
|
@ -852,7 +852,7 @@ def llCSV2List(s):
|
||||||
assert isstring(s)
|
assert isstring(s)
|
||||||
|
|
||||||
bracketlevel = 0
|
bracketlevel = 0
|
||||||
lastwascomma = False
|
lastwascomma = True # first space is eaten!!!
|
||||||
lastidx = 0
|
lastidx = 0
|
||||||
i = 0
|
i = 0
|
||||||
ret = []
|
ret = []
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue