diff --git a/cheat/utils.py b/cheat/utils.py index e8c850d..7dee75b 100644 --- a/cheat/utils.py +++ b/cheat/utils.py @@ -20,6 +20,12 @@ def colorize(sheet_content): except ImportError: return sheet_content + # GMFTBY add + if sheet_content == '' : + # can not find the content about the term + die('Can not find the content !') + return + first_line = sheet_content.splitlines()[0] lexer = get_lexer_by_name('bash') if first_line.startswith('```'):