Fixed indentation that stole 1 whitespace. 4 spaces became 3.

This commit is contained in:
Martin Mahner 2014-03-13 15:39:53 +01:00
parent 6cf181953f
commit e3f82db006

View file

@ -10,6 +10,6 @@ def in_list(value, arg):
@register.filter
def highlight(snippet):
h = pygmentize(snippet.content, snippet.lexer)
h = h.replace(u' ', u'  ')
h = h.replace(u'\t', '    ')
h = h.replace(u' ', u'  ')
h = h.replace(u'\t', '    ')
return h.splitlines()