Skip to content
This repository has been archived by the owner on Jan 7, 2018. It is now read-only.

Commit

Permalink
Fix rubocop offense. How very offensive.
Browse files Browse the repository at this point in the history
  • Loading branch information
GUI committed Apr 10, 2015
1 parent fc9a5a3 commit f57ac5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/migrate_users
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ source_collection.find.no_timeout.each do |user|
user["registration_source"] = [ENV["REGISTRATION_SOURCE_PREFIX"], user["registration_source"]].compact.join("_")
begin
dest_collection.insert(user)
rescue
rescue => e
puts "ERROR inserting user: #{user.inspect}"
raise $!
raise e
end
end

Expand Down

0 comments on commit f57ac5c

Please sign in to comment.