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:
Sei Lisa 2016-03-25 20:52:48 +01:00
parent 14f70c93b4
commit b0e5a50a59

View file

@ -852,7 +852,7 @@ def llCSV2List(s):
assert isstring(s)
bracketlevel = 0
lastwascomma = False
lastwascomma = True # first space is eaten!!!
lastidx = 0
i = 0
ret = []