summary refs log tree commit
path: root/lib/rack/content_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rack/content_type.rb')
-rw-r--r--lib/rack/content_type.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rack/content_type.rb b/lib/rack/content_type.rb
index 48c91e6c..58c734a3 100644
--- a/lib/rack/content_type.rb
+++ b/lib/rack/content_type.rb
@@ -16,7 +16,8 @@ module Rack
     include Rack::Utils
 
     def initialize(app, content_type = "text/html")
-      @app, @content_type = app, content_type
+      @app = app
+      @content_type = content_type
     end
 
     def call(env)