mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-14 09:33:09 +00:00
Merge pull request #248 from cjmayo/donateurl
Remove configuration.DonateUrl
This commit is contained in:
commit
056ba1d717
4 changed files with 0 additions and 8 deletions
|
|
@ -46,7 +46,6 @@ AppInfo = App+u" "+Copyright
|
|||
HtmlAppInfo = App+u", "+HtmlCopyright
|
||||
Url = configdata.url
|
||||
SupportUrl = u"https://github.com/linkchecker/linkchecker/issues"
|
||||
DonateUrl = ""
|
||||
Email = configdata.author_email
|
||||
UserAgent = u"Mozilla/5.0 (compatible; %s/%s; +%s)" % (AppName, Version, Url)
|
||||
Freeware = AppName+u""" comes with ABSOLUTELY NO WARRANTY!
|
||||
|
|
|
|||
|
|
@ -382,8 +382,6 @@ class _Logger (object):
|
|||
{'url': configuration.Url})
|
||||
self.comment(_("Write comments and bugs to %(url)s") %
|
||||
{'url': configuration.SupportUrl})
|
||||
self.comment(_("Support this project at %(url)s") %
|
||||
{'url': configuration.DonateUrl})
|
||||
self.check_date()
|
||||
|
||||
def write_outro (self):
|
||||
|
|
|
|||
|
|
@ -323,9 +323,6 @@ class HtmlLogger (_Logger):
|
|||
self.writeln(_("Write comments and bugs to %s") %
|
||||
(u'<a href="'+configuration.SupportUrl+u'">'+
|
||||
configuration.SupportUrl+u"</a>.<br/>"))
|
||||
self.writeln(_("Support this project at %s") %
|
||||
(u'<a href="'+configuration.DonateUrl+u'">'+
|
||||
configuration.DonateUrl+u"</a>."))
|
||||
self.writeln(u"</small></body></html>")
|
||||
|
||||
def end_output (self, **kwargs):
|
||||
|
|
|
|||
|
|
@ -99,8 +99,6 @@ class TextLogger (_Logger):
|
|||
{'url': configuration.Url})
|
||||
self.writeln(_("Write comments and bugs to %(url)s") %
|
||||
{'url': configuration.SupportUrl})
|
||||
self.writeln(_("Support this project at %(url)s") %
|
||||
{'url': configuration.DonateUrl})
|
||||
self.check_date()
|
||||
self.writeln()
|
||||
self.writeln(_("Start checking at %s") %
|
||||
|
|
|
|||
Loading…
Reference in a new issue