Removed unneeded space.

This commit is contained in:
Thorsten Eckel 2015-05-07 14:34:25 +02:00
parent 3641a41af1
commit 95f2b04564

View file

@ -7,7 +7,7 @@ class Channel < ApplicationModel
channels = Channel.where( 'active = ? AND area LIKE ?', true, '%::Inbound' )
channels.each { |channel|
begin
c = eval 'Channel::' + channel[:adapter].upcase + '.new' # rubocop:disable Lint/Eval
c = eval 'Channel::' + channel[:adapter].upcase + '.new' # rubocop:disable Lint/Eval
c.fetch(channel)
rescue Exception => e
logger.error "can't use " + 'Channel::' + channel[:adapter].upcase