aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib/active_job/arguments.rb
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2014-09-05 00:05:37 +0930
committerMatthew Draper <matthew@trebex.net>2014-09-05 00:05:37 +0930
commit2198a9fc0d2e27f828d452129ce47ad90e16fab7 (patch)
treedd62698261e3c5f3022e4e33fa02685a609ad50e /activejob/lib/active_job/arguments.rb
parent4c23701d3d90ad8c471cff3dd623a9b3f8241b67 (diff)
downloadrails-2198a9fc0d2e27f828d452129ce47ad90e16fab7.tar.gz
rails-2198a9fc0d2e27f828d452129ce47ad90e16fab7.tar.bz2
rails-2198a9fc0d2e27f828d452129ce47ad90e16fab7.zip
Fix a warning
Diffstat (limited to 'activejob/lib/active_job/arguments.rb')
-rw-r--r--activejob/lib/active_job/arguments.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/arguments.rb b/activejob/lib/active_job/arguments.rb
index 6eeca2861d..69a4ad928d 100644
--- a/activejob/lib/active_job/arguments.rb
+++ b/activejob/lib/active_job/arguments.rb
@@ -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