Stupid bug in http.lua.

This commit is contained in:
Diego Nehab 2005-06-12 22:02:21 +00:00
parent b22f6f3830
commit 8b114f3bf4
12 changed files with 78 additions and 73 deletions

View file

@ -1,3 +1,3 @@
local dict = require"socket.dict"
for i,v in dict.get("dict://localhost/d:teste") do print(v) end
for i,v in pairs(dict.get("dict://localhost/d:teste")) do print(v) end