From 92750c3cfdd23ae770e0056a7713e59f2a11fd3f Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Wed, 2 Oct 2013 21:51:32 -0500 Subject: [PATCH] Add parenthesis to the call for super --- lib/jekyll/tags/include.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll/tags/include.rb b/lib/jekyll/tags/include.rb index a16889d6..c8a21c2b 100644 --- a/lib/jekyll/tags/include.rb +++ b/lib/jekyll/tags/include.rb @@ -4,7 +4,7 @@ module Jekyll attr_accessor :path def initialize(msg, path) - super msg + super(msg) @path = path end end