net.server: Fix missing concatenation operator in error message
authorMatthew Wild <mwild1@gmail.com>
Fri, 02 Oct 2009 21:20:53 +0100
changeset 1863 51b1612325e6
parent 1860 5ef1eea887ca
child 1864 b9389286eece
net.server: Fix missing concatenation operator in error message
net/server.lua
--- a/net/server.lua	Fri Oct 02 17:14:54 2009 +0500
+++ b/net/server.lua	Fri Oct 02 21:20:53 2009 +0100
@@ -720,7 +720,7 @@
 removeserver = function( port )
     local handler = _server[ port ]
     if not handler then
-        return nil, "no server found on port '" .. tostring( port ) "'"
+        return nil, "no server found on port '" .. tostring( port ) .. "'"
     end
     handler.close( )
     _server[ port ] = nil