Commit 7c90ead848fdce99e73522386fe7d538baba0a56

Authored by Nathan Broadbent
1 parent 5a227ae9
Exists in master and in 1 other branch production

Fixed column in backtrace line #to_s

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/models/backtrace_line.rb
... ... @@ -15,7 +15,7 @@ class BacktraceLine
15 15 delegate :app, :to => :backtrace
16 16  
17 17 def to_s
18   - "#{file}:#{number}" << (column.present? ? ":{column}" : "")
  18 + "#{file}:#{number}" << (column.present? ? ":#{column}" : "")
19 19 end
20 20  
21 21 def in_app?
... ...