fix wrong variable name in vanilla_mysql import script

This commit is contained in:
Neil Lalonde 2016-01-11 14:20:07 -05:00
parent fbacaab2fc
commit 42d05ecfb2
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class ImportScripts::VanillaSQL < ImportScripts::Base
break if results.size < 1
next if all_records_exist? :users, users.map {|u| u['UserID'].to_i}
next if all_records_exist? :users, results.map {|u| u['UserID'].to_i}
create_users(results, total: total_count, offset: offset) do |user|
next if user['Email'].blank?