Fix a terrible typo that kept YAMLServer from working. :(

This commit is contained in:
Akinori MUSHA 2013-03-15 19:24:20 +09:00
parent c6d28de9b7
commit fc8ddebce0

View file

@ -1,5 +1,5 @@
require 'http/cookie_jar'
require 'psych' if !defined(YAML) && RUBY_VERSION == "1.9.2"
require 'psych' if !defined?(YAML) && RUBY_VERSION == "1.9.2"
require 'yaml'
# YAMLSaver saves and loads cookies in the YAML format.