examples/mime-type.lua
changeset 102 f3d9d9e67ee4
parent 101 98488a7e6a48
--- a/examples/mime-type.lua	Fri Apr 02 19:58:18 2010 +0300
+++ b/examples/mime-type.lua	Fri Apr 02 20:00:20 2010 +0300
@@ -36,7 +36,6 @@
 		local mtype, exts = l:match ( '^([%S]+)%s+(%S.*)$' )
 		if mtype then
 			for ext in exts:gmatch ( '%S+' ) do
-				print ( ("Adding type %s for extension %s"):format ( mtype, ext ) )
 				db[ext] = mtype
 			end
 		end