Skip to content

Commit

Permalink
removing , from ,= statement in WrappedDatabaseException constructor
Browse files Browse the repository at this point in the history
[#3830 state:committed]

Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
  • Loading branch information
subbarao authored and jeremy committed Feb 4, 2010
1 parent f497e7a commit 639e044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/base.rb
Expand Up @@ -79,7 +79,7 @@ class WrappedDatabaseException < StatementInvalid

def initialize(message, original_exception)
super(message)
@original_exception, = original_exception
@original_exception = original_exception
end
end

Expand Down

0 comments on commit 639e044

Please sign in to comment.