From 7f2bf6cd2ae83752ed0798d1c97c920d80fd8c44 Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Sat, 23 Feb 2019 20:51:23 +0000 Subject: [PATCH] minor html related fix --- lib/frontend/html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/frontend/html.py b/lib/frontend/html.py index 168db91..c2a88bd 100644 --- a/lib/frontend/html.py +++ b/lib/frontend/html.py @@ -25,8 +25,8 @@ def visualize(answer_data, request_options): if len(answers) == 1: repository_button = _github_button(answers[0]['topic_type']) - result = frontend.ansi.visualize(answer_data, request_options) - return _render_html(query, result, editable, repository_button, topics_list, request_options) + result, found = frontend.ansi.visualize(answer_data, request_options) + return _render_html(query, result, editable, repository_button, topics_list, request_options), found def _github_button(topic_type):