From: Jo-Philipp Wich Date: Sun, 26 Jul 2009 22:34:06 +0000 (+0000) Subject: libs/nixio: d'oh ... import tostring() as well X-Git-Tag: 0.10.0~1300 X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=2f7fb7e05cd591b234bd67d134f4942864a5aa57;p=project%2Fluci.git libs/nixio: d'oh ... import tostring() as well --- diff --git a/libs/nixio/lua/nixio/util.lua b/libs/nixio/lua/nixio/util.lua index bce4ce25e..401ec615e 100644 --- a/libs/nixio/lua/nixio/util.lua +++ b/libs/nixio/lua/nixio/util.lua @@ -14,7 +14,8 @@ $Id$ local table = require "table" local nixio = require "nixio" -local getmetatable, assert, pairs, type = getmetatable, assert, pairs, type +local getmetatable, assert, pairs, type, tostring = + getmetatable, assert, pairs, type, tostring module "nixio.util"