diff --git a/dpaste/templatetags/dpaste_tags.py b/dpaste/templatetags/dpaste_tags.py index 88572c9..5b6e8d1 100644 --- a/dpaste/templatetags/dpaste_tags.py +++ b/dpaste/templatetags/dpaste_tags.py @@ -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()