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:
calvin 2006-05-03 16:39:01 +00:00
parent 58993644d8
commit c35737ff3a
7 changed files with 7 additions and 7 deletions

View file

@ -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()

View file

@ -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()

View file

@ -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()

View file

@ -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") %

View file

@ -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()

View file

@ -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()

View file

@ -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):
"""