Merge pull request #4404 from mbajur/master

Add missing fat arrow in bbcode_to_md method rescue block
This commit is contained in:
Guo Xiang Tan 2016-08-19 20:10:51 +08:00 committed by GitHub
commit f27187c9e2

View file

@ -53,7 +53,7 @@ module ImportScripts::PhpBB3
def bbcode_to_md(text)
begin
text.bbcode_to_md(false)
rescue e
rescue => e
puts "Problem converting \n#{text}\n using ruby-bbcode-to-md"
text
end