1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix a warning

This commit is contained in:
Matthew Draper 2014-09-05 00:05:37 +09:30
parent 4c23701d3d
commit 2198a9fc0d

View file

@ -6,7 +6,7 @@ module ActiveJob
attr_reader :original_exception
def initialize(e) #:nodoc:
super ("Error while trying to deserialize arguments: #{e.message}")
super("Error while trying to deserialize arguments: #{e.message}")
@original_exception = e
set_backtrace e.backtrace
end