fix backtraces

This commit is contained in:
John Bintz 2012-01-25 11:22:33 -05:00
parent 67c8d64434
commit 0f05be7928
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ module Capybara
end
def add_backtrace(exception)
clean_backtrace(exception).each { |line| logger_target << " #{line.strip}" }
clean_backtrace(exception).each { |line| logger_target << " #{line.strip}\n" }
end
end