diff options
author | Carl Lerche <carllerche@mac.com> | 2010-09-14 10:40:05 -0700 |
---|---|---|
committer | Carl Lerche <carllerche@mac.com> | 2010-09-14 10:40:05 -0700 |
commit | 9362ef6e21e44341a5ef9d85ece468f407357ceb (patch) | |
tree | 69c1869796f70e85647d95713ab8e74652f7244e /activesupport/lib/active_support/i18n.rb | |
parent | a4278766068ee89fc910e113ef93d82071757965 (diff) | |
download | rails-9362ef6e21e44341a5ef9d85ece468f407357ceb.tar.gz rails-9362ef6e21e44341a5ef9d85ece468f407357ceb.tar.bz2 rails-9362ef6e21e44341a5ef9d85ece468f407357ceb.zip |
Require lazy_load_hooks.rb with the correct path.
Diffstat (limited to 'activesupport/lib/active_support/i18n.rb')
-rw-r--r-- | activesupport/lib/active_support/i18n.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/i18n.rb b/activesupport/lib/active_support/i18n.rb index 4dd9e826e4..4d33f597d9 100644 --- a/activesupport/lib/active_support/i18n.rb +++ b/activesupport/lib/active_support/i18n.rb @@ -1,6 +1,6 @@ begin require 'i18n' - require 'lazy_load_hooks' + require 'active_support/lazy_load_hooks' rescue LoadError => e $stderr.puts "You don't have i18n installed in your application. Please add it to your Gemfile and run bundle install" raise e |