From 949a30169824098627e66400bf4ba451f66c8d00 Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Tue, 3 Nov 2015 00:36:05 +0100 Subject: [PATCH] Fixed a few typo mistakes in the HTML output of the format module. --- gitinspector/format.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gitinspector/format.py b/gitinspector/format.py index c3a24cc..9669eee 100644 --- a/gitinspector/format.py +++ b/gitinspector/format.py @@ -86,7 +86,7 @@ def output_header(repos): else: jquery_js = " src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js\">" - print(html_header.format(title=_("Repository statistics for '{0}'").format(repo_string), + print(html_header.format(title=_("Repository statistics for '{0}'").format(repos_string), jquery=jquery_js, jquery_tablesorter=tablesorter_js, jquery_flot=flot_js, @@ -97,8 +97,8 @@ def output_header(repos): " for git repositories.").format( "gitinspector", version.__version__), - repos_text=_(INFO_ONE_REPOSITORY if len(repos) <= 1 else INFO_MANY_REPOSITORIES).format( - repos_string, localization.get_date()), + repo_text=_(INFO_ONE_REPOSITORY if len(repos) <= 1 else INFO_MANY_REPOSITORIES).format( + repos_string, localization.get_date()), show_minor_authors=_("Show minor authors"), hide_minor_authors=_("Hide minor authors"), show_minor_rows=_("Show rows with minor work"),