Fix "attempt to index nil value" in --help

This commit is contained in:
Jason Perkins 2014-10-22 15:02:02 -04:00
parent 3104421fc3
commit dad48fd632

View File

@ -145,7 +145,7 @@
local i = 0
return function()
i = i + 1
return act._list[keys[i]]
return action._list[keys[i]]
end
end