Add parenthesis to the call for super

This commit is contained in:
Matt Rogers 2013-10-02 21:51:32 -05:00
parent 6d74b4df00
commit 92750c3cfd
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ module Jekyll
attr_accessor :path
def initialize(msg, path)
super msg
super(msg)
@path = path
end
end