temporary fix for #40

This commit is contained in:
Alan Hamlett 2016-06-15 00:21:52 +02:00
parent cd074dcff5
commit 73710edd4a
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ def guess_lexer_using_modeline(text):
if file_type is not None:
try:
lexer = get_lexer_by_name(file_type)
except ClassNotFound: # pragma: nocover
except: # pragma: nocover
pass
if lexer is not None: