diff --git a/lib/tasks/translations.rake b/lib/tasks/translations.rake index d1979d7..8d3e8f4 100644 --- a/lib/tasks/translations.rake +++ b/lib/tasks/translations.rake @@ -13,7 +13,9 @@ namespace :translations do translation = Translation.find(hash['id']) translation.update_attributes(hash) rescue - Translation.new(hash).save + begin + Translation.new(hash).save + rescue; end end } end