diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-07-26 22:34:06 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-07-26 22:34:06 +0000 |
commit | 2f7fb7e05cd591b234bd67d134f4942864a5aa57 (patch) | |
tree | 778746a981cb2978a8bcacec0dbfb8a23e745b0b /libs/nixio | |
parent | 136b7253b1d9ecc0743a884c422618f8872186d7 (diff) |
libs/nixio: d'oh ... import tostring() as well
Diffstat (limited to 'libs/nixio')
-rw-r--r-- | libs/nixio/lua/nixio/util.lua | 3 |
1 files changed, 2 insertions, 1 deletions
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" |