From e727a548ed0a59553dec463c999c50acab48df39 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Thu, 29 Oct 2015 18:55:59 +0100 Subject: [PATCH] Fixed variable missmatch. --- lib/import/otrs.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/import/otrs.rb b/lib/import/otrs.rb index 2d33d6957..7e7b1de34 100644 --- a/lib/import/otrs.rb +++ b/lib/import/otrs.rb @@ -1097,7 +1097,7 @@ module Import::OTRS local_roles.each {|role| role_lookup = Role.lookup( name: role ) next if !role_lookup - role_ids.push role_lookup.id + local_role_ids.push role_lookup.id } local_role_ids end