diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-12 21:35:16 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-12 21:35:16 +0000 |
commit | 561910cc99d8aa9b8587a90982eed8aaf045f142 (patch) | |
tree | 9cfb360f2752c1aef67800a4cf0e7e5296385cf3 /lib/rbot/registry.rb | |
parent | c20651123433d3dc99a53a83bbeb128c5968ffc6 (diff) |
Fix a problem with subregistries
Diffstat (limited to 'lib/rbot/registry.rb')
-rw-r--r-- | lib/rbot/registry.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/registry.rb b/lib/rbot/registry.rb index cb59306c..a3c55da8 100644 --- a/lib/rbot/registry.rb +++ b/lib/rbot/registry.rb @@ -298,7 +298,7 @@ module Irc end def sub_registry(prefix) - return BotRegistryAccessor.new(@bot, @name + "/" + prefix) + return BotRegistryAccessor.new(@bot, @name + "/" + prefix.to_s) end # returns the number of keys in your registry namespace |