Fix typo in Hindsight InfluxDB Lua code

Change-Id: If3d28328b2803d998bde877c008758b095876096
This commit is contained in:
Éric Lemoine 2016-09-14 17:37:13 +02:00
parent 103d426993
commit 8149af754f
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ local function encode_value(value)
string.format("%s=%s", escape_string(k), encode_scalar_value(v))
)
end
return tablec.concat(values, ',')
return table.concat(values, ',')
else
return "value=" .. encode_scalar_value(value)
end