From e503c17dfa1de5e06a8f461201e74c43b1442ae3 Mon Sep 17 00:00:00 2001 From: David Zhang Date: Thu, 14 Jul 2016 12:00:19 +0800 Subject: [PATCH] Fix fmt error --- lib/jekyll/filters.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/jekyll/filters.rb b/lib/jekyll/filters.rb index 06a4147f..1d89b830 100644 --- a/lib/jekyll/filters.rb +++ b/lib/jekyll/filters.rb @@ -273,7 +273,8 @@ module Jekyll begin input.to_i rescue - raise ArgumentError, "Object '#{input.inspect}' could not be converted into an integer." + raise ArgumentError, + "Object '#{input.inspect}' could not be converted into an integer." end end