mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +01:00
Add a check for posix environment for pygments.
This commit is contained in:
parent
39a15a669a
commit
f89d887c21
10
cheat
10
cheat
@ -2,14 +2,18 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
try:
|
USE_PYGMENTS = False
|
||||||
|
|
||||||
|
# NOTE remove this check if it is confirmed to work on windows
|
||||||
|
if os.name == 'posix':
|
||||||
|
try:
|
||||||
from pygments import highlight
|
from pygments import highlight
|
||||||
from pygments.util import ClassNotFound
|
from pygments.util import ClassNotFound
|
||||||
from pygments.lexers import get_lexer_for_filename, TextLexer
|
from pygments.lexers import get_lexer_for_filename, TextLexer
|
||||||
from pygments.formatters import TerminalFormatter
|
from pygments.formatters import TerminalFormatter
|
||||||
USE_PYGMENTS = True
|
USE_PYGMENTS = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
USE_PYGMENTS = False
|
pass
|
||||||
|
|
||||||
|
|
||||||
def cheat_directories():
|
def cheat_directories():
|
||||||
|
Loading…
Reference in New Issue
Block a user