# HG changeset patch # User Mads Kiilerich # Date 1439289547 -7200 # Node ID 1baa286d001da940764428ea475294af00c481b3 # Parent 07e293730376d83df2a6adb13eda5b66081002d1 helpers: drop incorrect % escaping in fancy_file_stats % should not be escaped when not doing % formatting. diff -r 07e293730376 -r 1baa286d001d kallithea/lib/helpers.py --- a/kallithea/lib/helpers.py Tue Aug 11 12:39:07 2015 +0200 +++ b/kallithea/lib/helpers.py Tue Aug 11 12:39:07 2015 +0200 @@ -1210,7 +1210,7 @@ #import ipdb;ipdb.set_trace() b_d = '
%s
' % (bin_op, cgen('a', a_v='', d_v=0), lbl) - b_a = '
' + b_a = '
' return literal('
%s%s
' % (width, b_a, b_d)) t = stats['added'] + stats['deleted']