diff options
Diffstat (limited to 'lib/rbot')
-rw-r--r-- | lib/rbot/config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/config.rb b/lib/rbot/config.rb index 5af50f34..383cef96 100644 --- a/lib/rbot/config.rb +++ b/lib/rbot/config.rb @@ -7,7 +7,7 @@ module Irc module YAML def YAML.load_file( filepath ) File.open( filepath ) do |f| - YAML::load( f ) + load( f ) end end end |