diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-06-14 09:37:45 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-06-14 09:37:58 -0700 |
commit | b9b9e39bab699ad62258c968ed7f80371dbfca83 (patch) | |
tree | 77e3320b94c68b64525dc93b9bfabfbc0c312803 /actionpack | |
parent | 68021d3602245e81b4e604e64f2b19fbf298f3c3 (diff) | |
download | rails-b9b9e39bab699ad62258c968ed7f80371dbfca83.tar.gz rails-b9b9e39bab699ad62258c968ed7f80371dbfca83.tar.bz2 rails-b9b9e39bab699ad62258c968ed7f80371dbfca83.zip |
i suck, fixing error message
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/abstract_controller/helpers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/abstract_controller/helpers.rb b/actionpack/lib/abstract_controller/helpers.rb index c36b210e23..d63d17f4c5 100644 --- a/actionpack/lib/abstract_controller/helpers.rb +++ b/actionpack/lib/abstract_controller/helpers.rb @@ -151,7 +151,7 @@ module AbstractController @error = error @path = "helpers/#{path}.rb" set_backtrace error.backtrace - super("Missing helper file helpers/%s.rb" % error) + super("Missing helper file helpers/%s.rb" % path) end end |