From 0ad3f3e12887941f90bcc65f173f038b05c9ab6c Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Sun, 3 Jun 2018 19:43:39 +0000 Subject: [PATCH] fixed minor bug in lib/cheat_wrapper.py --- lib/cheat_wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cheat_wrapper.py b/lib/cheat_wrapper.py index 1741998..cb3eca0 100644 --- a/lib/cheat_wrapper.py +++ b/lib/cheat_wrapper.py @@ -74,7 +74,7 @@ def _colorize_internal(topic, answer, html_needed): if topic in [':list', ':bash_completion']: return answer - if topic == ':firstpage': + if topic == ':firstpage-v1': lines = answer.splitlines() answer_lines = lines[:9] answer_lines.append(colored.fg('grey_35')+lines[9]+colored.attr('reset'))