diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-01-26 15:18:56 -0800 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-01-26 15:19:05 -0800 |
| commit | d5aa4e52983712f9f4c5b23528d0c2dab12b0b33 (patch) | |
| tree | f7d03c285b9fa9f62dbe5cc4b01f13f5c289488a /nomsu.lua | |
| parent | 95f3f55ff2598cd3f00baa3317ebd98ce252f0be (diff) | |
Minor fix for value_to_nomsu
Diffstat (limited to 'nomsu.lua')
| -rw-r--r-- | nomsu.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -806,7 +806,7 @@ do local _accum_0 = { } local _len_0 = 1 for k, v in pairs(value) do - _accum_0[_len_0] = tostring(self:value_to_nomsu(k)) .. "=" .. tostring(self:value_to_nomsu(v)) + _accum_0[_len_0] = tostring(self:value_to_nomsu(k)) .. ":" .. tostring(self:value_to_nomsu(v)) _len_0 = _len_0 + 1 end return _accum_0 |
