diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-05-01 14:03:52 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-05-01 14:03:52 +0100 |
commit | e55096b063720e0be4ca8d774095d2f6dfb7c086 (patch) | |
tree | 1b3b7c743bf1963bfe7cf11270ad719072a19200 /lib/mauve/person.rb | |
parent | bb5ac2581ce9aa6a1a03c97986e91ad89f67fe3f (diff) | |
parent | fafac666b1d9f1b73fe4330af6b3c14d57ded2cb (diff) |
merge
Diffstat (limited to 'lib/mauve/person.rb')
-rw-r--r-- | lib/mauve/person.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mauve/person.rb b/lib/mauve/person.rb index a4acaf0..c1c12c6 100644 --- a/lib/mauve/person.rb +++ b/lib/mauve/person.rb @@ -169,7 +169,7 @@ module Mauve # notification_method = Configuration.current.notification_methods[name.to_s] - @logger.warn "Notification method '#{name}' not defined (#{@person.username})" if notification_method.nil? + logger.warn "Notification method '#{name}' not defined (#{@person.username})" if notification_method.nil? # # Work out the destination @@ -182,7 +182,7 @@ module Mauve destination = nil end - @logger.warn "#{name} destination for #{@person.username} not set" if destination.nil? + logger.warn "#{name} destination for #{@person.username} not set" if destination.nil? if args.first.is_a?(Hash) conditions = @base_conditions.merge(args.pop) |