changeset 6494:c30849d4c8ba

highlight: backward compatibility with pygments 0.5.1
author Benoit Allard <benoit@aeteurope.nl>
date Thu, 10 Apr 2008 14:24:27 +0200
parents c19c26718d22
children 5c1bb5750558 a7582980d654
files hgext/highlight.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/highlight.py	Tue Apr 08 18:39:02 2008 +0200
+++ b/hgext/highlight.py	Thu Apr 10 14:24:27 2008 +0200
@@ -59,10 +59,10 @@
     try:
         lexer = guess_lexer_for_filename(fctx.path(), text,
                                          encoding=util._encoding)
-    except ClassNotFound:
+    except (ClassNotFound, ValueError):
         try:
             lexer = guess_lexer(text, encoding=util._encoding)
-        except ClassNotFound:
+        except (ClassNotFound, ValueError):
             lexer = TextLexer(encoding=util._encoding)
 
     formatter = HtmlFormatter(style=style, encoding=util._encoding)