Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
pakozm committed Nov 9, 2015
1 parent fa6e8d0 commit 696c9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IPyLua/dom_builder.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ local element_mt = {
elseif data["text/html"] then
tbl[#tbl+1] = data["text/html"]
else
tbl[#tbl+1] = ("<pre>%s</pre>"):format(assert( data["text/plain"] ))
tbl[#tbl+1] = assert( data["text/plain"] )
end
end
tbl[#tbl+1] = "</"
Expand Down

0 comments on commit 696c9fd

Please sign in to comment.