diff --git a/linkcheck/configuration/__init__.py b/linkcheck/configuration/__init__.py index 7bfed62f..e1f2acd9 100644 --- a/linkcheck/configuration/__init__.py +++ b/linkcheck/configuration/__init__.py @@ -38,7 +38,6 @@ HtmlAuthor = Author.replace(' ', ' ') Copyright = "Copyright (C) 2000-2016 Bastian Kleineidam, 2010-2020 " + Author HtmlCopyright = ("Copyright © 2000-2016 Bastian Kleineidam, 2010-2020 " + HtmlAuthor) -AppInfo = App + " " + Copyright HtmlAppInfo = App + ", " + HtmlCopyright Url = configdata.url SupportUrl = "https://github.com/linkchecker/linkchecker/issues" @@ -46,9 +45,8 @@ UserAgent = "Mozilla/5.0 (compatible; %s/%s; +%s)" % (AppName, Version, Url) Freeware = ( AppName + """ comes with ABSOLUTELY NO WARRANTY! -This is free software, and you are welcome to redistribute it -under certain conditions. Look at the file `LICENSE' within this -distribution.""" +This is free software, and you are welcome to redistribute it under +certain conditions. Look at the file `LICENSE' within this distribution.""" ) Portable = configdata.portable diff --git a/linkcheck/logger/text.py b/linkcheck/logger/text.py index 89b206a1..fa7ab32d 100644 --- a/linkcheck/logger/text.py +++ b/linkcheck/logger/text.py @@ -93,7 +93,8 @@ class TextLogger(_Logger): def write_intro(self): """Log introduction text.""" - self.writeln(configuration.AppInfo) + self.writeln(configuration.App) + self.writeln(configuration.Copyright) self.writeln(configuration.Freeware) self.writeln( _("Get the newest version at %(url)s") % {'url': configuration.Url}