From 8eaf7fc49705966eeea3fdae929e3a386b082b2b Mon Sep 17 00:00:00 2001 From: bootstraponline Date: Sat, 21 Jul 2012 16:57:20 -0600 Subject: [PATCH] Remove msg. --- lib/gollum/frontend/app.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/gollum/frontend/app.rb b/lib/gollum/frontend/app.rb index a237dad3..7dc4bc94 100644 --- a/lib/gollum/frontend/app.rb +++ b/lib/gollum/frontend/app.rb @@ -125,8 +125,7 @@ module Precious wiki = Gollum::Wiki.new(settings.gollum_path, wiki_options) page = wiki.page(CGI.unescape(params[:page])) name = params[:rename] || page.name - msg = commit_message - committer = Gollum::Committer.new(wiki, msg) + committer = Gollum::Committer.new(wiki, commit_message) commit = {:committer => committer} update_wiki_page(wiki, page, params[:content], commit, name, params[:format])