--dump broke with PL: an example of abusing a List

This commit is contained in:
steve donovan 2011-04-13 18:57:28 +02:00
parent f3bb614503
commit 109a794109
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ function Item:dump(verbose)
if verbose then if verbose then
print(self.type,name,self.summary) print(self.type,name,self.summary)
if self.description then print(self.description) end if self.description then print(self.description) end
for p in self.params:iter() do for _,p in ipairs(self.params) do
print(p,self.params[p]) print(p,self.params[p])
end end
for tag, value in pairs(self.tags) do for tag, value in pairs(self.tags) do