end
leftover_accounts.each do |account|
- plugin.delete_account(account)
- puts "Removed: #{account} (#{plugin.describe_account(account)})"
+ begin
+ plugin.delete_account(account)
+ puts "Removed: #{account} (#{plugin.describe_account(account)})"
+ rescue NonexistentAccountError => e
+ # This usually happens after an account's domain is deleted.
+ # When we try to delete the account, it's already gone.
+ puts "Gone: #{account} (#{plugin.describe_account(account)})"
+ end
end
end