From a9a287822d6b0c4bdcbd98fd35509ff6b13150a7 Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Mon, 26 Sep 2011 18:51:42 +0800 Subject: [PATCH] Fixed char bug --- app/views/notices/_backtrace.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/notices/_backtrace.html.haml b/app/views/notices/_backtrace.html.haml index 66a7893..2f44a13 100644 --- a/app/views/notices/_backtrace.html.haml +++ b/app/views/notices/_backtrace.html.haml @@ -7,7 +7,7 @@ %tr %td.line{:class => (Notice.in_app_backtrace_line?(line) ? 'in-app' : nil)} %span.path>= path - %span.file= line['number'].blank? ? file : ("#{file}:" << line_number_with_link(@app, line)).html_safe + %span.file= line['number'].blank? ? file : ("#{file}:" + line_number_with_link(@app, line).to_s).html_safe → %span.method= line['method'] -- libgit2 0.21.2