projects
/
oweals
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1bfd6b6
)
Fixed uvl.errors
author
Steven Barth
<steven@midlink.org>
Tue, 9 Sep 2008 15:39:38 +0000
(15:39 +0000)
committer
Steven Barth
<steven@midlink.org>
Tue, 9 Sep 2008 15:39:38 +0000
(15:39 +0000)
libs/uvl/luasrc/uvl/errors.lua
patch
|
blob
|
history
diff --git
a/libs/uvl/luasrc/uvl/errors.lua
b/libs/uvl/luasrc/uvl/errors.lua
index bdd596ca820c0b2e347b1c5423f518769fb06821..242965ddc129e2d4fd5b1e0c521f8f00da0a9a69 100644
(file)
--- a/
libs/uvl/luasrc/uvl/errors.lua
+++ b/
libs/uvl/luasrc/uvl/errors.lua
@@
-121,7
+121,7
@@
function error.child(self, err)
if not self.childs then
self.childs = { err }
else
- table.insert( self.childs, err )
+ self.childs[#self.childs+1] = err
end
return self
end