summaryrefslogtreecommitdiff
path: root/lib/rbot/config.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbot/config.rb')
-rw-r--r--lib/rbot/config.rb2
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