mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-23 07:34:44 +00:00
use new long duration format
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3132 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
58993644d8
commit
c35737ff3a
7 changed files with 7 additions and 7 deletions
|
|
@ -127,5 +127,5 @@ class CSVLogger (linkcheck.logger.Logger):
|
|||
duration = self.stoptime - self.starttime
|
||||
self.comment(_("Stopped checking at %s (%s)") %
|
||||
(linkcheck.strformat.strtime(self.stoptime),
|
||||
linkcheck.strformat.strduration(duration)))
|
||||
linkcheck.strformat.strduration_long(duration)))
|
||||
self.close_fileoutput()
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@ class DOTLogger (linkcheck.logger.Logger):
|
|||
duration = self.stoptime - self.starttime
|
||||
self.comment(_("Stopped checking at %s (%s)") %
|
||||
(linkcheck.strformat.strtime(self.stoptime),
|
||||
linkcheck.strformat.strduration(duration)))
|
||||
linkcheck.strformat.strduration_long(duration)))
|
||||
self.close_fileoutput()
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -123,5 +123,5 @@ class GMLLogger (linkcheck.logger.Logger):
|
|||
duration = self.stoptime - self.starttime
|
||||
self.comment(_("Stopped checking at %s (%s)") %
|
||||
(linkcheck.strformat.strtime(self.stoptime),
|
||||
linkcheck.strformat.strduration(duration)))
|
||||
linkcheck.strformat.strduration_long(duration)))
|
||||
self.close_fileoutput()
|
||||
|
|
|
|||
|
|
@ -299,7 +299,7 @@ class HtmlLogger (linkcheck.logger.Logger):
|
|||
duration = self.stoptime - self.starttime
|
||||
self.writeln(_("Stopped checking at %s (%s)") %
|
||||
(linkcheck.strformat.strtime(self.stoptime),
|
||||
linkcheck.strformat.strduration(duration)))
|
||||
linkcheck.strformat.strduration_long(duration)))
|
||||
self.writeln(u'</blockquote><br><hr noshade size="1"><small>'+
|
||||
linkcheck.configuration.HtmlAppInfo+u"<br>")
|
||||
self.writeln(_("Get the newest version at %s") %
|
||||
|
|
|
|||
|
|
@ -149,5 +149,5 @@ class SQLLogger (linkcheck.logger.Logger):
|
|||
duration = self.stoptime - self.starttime
|
||||
self.comment(_("Stopped checking at %s (%s)") %
|
||||
(linkcheck.strformat.strtime(self.stoptime),
|
||||
linkcheck.strformat.strduration(duration)))
|
||||
linkcheck.strformat.strduration_long(duration)))
|
||||
self.close_fileoutput()
|
||||
|
|
|
|||
|
|
@ -255,5 +255,5 @@ class TextLogger (linkcheck.logger.Logger):
|
|||
duration = self.stoptime - self.starttime
|
||||
self.writeln(_("Stopped checking at %s (%s)") %
|
||||
(linkcheck.strformat.strtime(self.stoptime),
|
||||
linkcheck.strformat.strduration(duration)))
|
||||
linkcheck.strformat.strduration_long(duration)))
|
||||
self.close_fileoutput()
|
||||
|
|
|
|||
|
|
@ -112,7 +112,7 @@ class XMLLogger (linkcheck.logger.Logger):
|
|||
duration = self.stoptime - self.starttime
|
||||
self.comment(_("Stopped checking at %s (%s)") %
|
||||
(linkcheck.strformat.strtime(self.stoptime),
|
||||
linkcheck.strformat.strduration(duration)))
|
||||
linkcheck.strformat.strduration_long(duration)))
|
||||
|
||||
def xml_starttag (self, name, attrs=None):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue