From 04e1b17b58143b1662a237de3fc724478ddbcba5 Mon Sep 17 00:00:00 2001 From: Martin Mahner Date: Fri, 3 Jun 2011 10:32:57 +0200 Subject: [PATCH] Re-added pygments. --- pastebin/apps/dpaste/highlight.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pastebin/apps/dpaste/highlight.py b/pastebin/apps/dpaste/highlight.py index 51a20f4..82299c2 100644 --- a/pastebin/apps/dpaste/highlight.py +++ b/pastebin/apps/dpaste/highlight.py @@ -37,8 +37,6 @@ class NakedHtmlFormatter(HtmlFormatter): yield i, t def pygmentize(code_string, lexer_name=LEXER_DEFAULT): - return escape(code_string) - """ try: lexer = get_lexer_by_name(lexer_name) except ValueError: @@ -50,7 +48,6 @@ def pygmentize(code_string, lexer_name=LEXER_DEFAULT): except TypeError: logger.warning('Could not highlight code with lexer "%s"' % lexer_name) return escape(code_string) - """ def guess_code_lexer(code_string, default_lexer='unknown'): try: