summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authordmitry kim <jason@nichego.net>2009-06-06 17:44:13 +0400
committerdmitry kim <jason@nichego.net>2009-06-06 17:44:13 +0400
commit8b082f999db91d5380af28d136585f6c9083090e (patch)
treebfe74cbd0c8a03331daaf255c6f5281677a8aaea /lib
parent8e055d24373d965a568431c6bacc71019553a953 (diff)
* (gettext) relaxed check for bound_target() existance
Diffstat (limited to 'lib')
-rw-r--r--lib/rbot/load-gettext.rb2
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: