1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

fix "unused variable" warning

This commit is contained in:
Konstantin Haase 2012-03-11 11:36:26 +01:00
parent 2cbe42e91c
commit 2c544cabaa

View file

@ -1355,7 +1355,7 @@ module Sinatra
set :running, true
yield server if block_given?
end
rescue Errno::EADDRINUSE => e
rescue Errno::EADDRINUSE
$stderr.puts "== Someone is already performing on port #{port}!"
end