diff options
author | dmitry kim <jason@nichego.net> | 2009-06-06 17:44:13 +0400 |
---|---|---|
committer | dmitry kim <jason@nichego.net> | 2009-06-06 17:44:13 +0400 |
commit | 8b082f999db91d5380af28d136585f6c9083090e (patch) | |
tree | bfe74cbd0c8a03331daaf255c6f5281677a8aaea /lib | |
parent | 8e055d24373d965a568431c6bacc71019553a953 (diff) |
* (gettext) relaxed check for bound_target() existance
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: |