diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rbot/load-gettext.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/load-gettext.rb b/lib/rbot/load-gettext.rb index 505a28bc..4c2dc587 100644 --- a/lib/rbot/load-gettext.rb +++ b/lib/rbot/load-gettext.rb @@ -42,7 +42,7 @@ begin # patch for ruby-gettext 1.x to cope with anonymous modules used by rbot. # bound_targets and related methods are not used nor present in 2.x, and # this patch is not needed - if instance_methods.include?('bound_targets') and not instance_methods.include?('orig_bound_targets') + if methods.include? 'bound_targets' alias :orig_bound_targets :bound_targets def bound_targets(*a) # :nodoc: |