summary refs log tree commit
path: root/lib/rack/handler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rack/handler.rb')
-rw-r--r--lib/rack/handler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rack/handler.rb b/lib/rack/handler.rb
index f11e37e3..8a5fadd5 100644
--- a/lib/rack/handler.rb
+++ b/lib/rack/handler.rb
@@ -19,7 +19,7 @@ module Rack
       if klass = @handlers[server]
         klass.split("::").inject(Object) { |o, x| o.const_get(x) }
       else
-        const_get(server)
+        const_get(server, false)
       end
 
     rescue NameError => name_error