diff --git a/debian/changelog b/debian/changelog
index e5de2b76..7de1de7b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-linkchecker (1.2.0) stable; urgency=low
+linkchecker (1.2.0) unstable; urgency=low
* stable release
* fixed usage text glitches
diff --git a/linkcheck/Logging.py b/linkcheck/Logging.py
index 4a59fa06..712312f5 100644
--- a/linkcheck/Logging.py
+++ b/linkcheck/Logging.py
@@ -1,3 +1,18 @@
+"""Logger classes.
+
+Every Logger has to implement the following functions:
+init(self)
+ Called once to initialize the Logger. Why do we not use __init__(self)?
+ Because we initialize the start time in init and __init__ gets not
+ called at the time the checking starts.
+
+newUrl(self,urlData)
+ Called every time an url finished checking. All data we checked is in
+ the UrlData object urlData.
+
+endOfOutput(self)
+ Called at the end of checking to close filehandles and such.
+"""
import sys,time,Config,StringUtil
# ANSI color codes
@@ -83,7 +98,7 @@ class StandardLogger:
self.fd.write("Check Time %.3f seconds\n" % urldata.checktime)
if urldata.infoString:
self.fd.write("Info "+StringUtil.indent(
- StringUtil.blocktext(urldata.infoString, 65), 11)+"\n")
+ StringUtil.blocktext(urldata.infoString, 65), 11)+"\n")
if urldata.warningString:
self.warnings = self.warnings+1
self.fd.write("Warning "+StringUtil.indent(
@@ -198,7 +213,7 @@ class HtmlLogger(StandardLogger):
self.fd.write(" found.
")
self.stoptime = time.time()
self.fd.write("Stopped checking at"+_strtime(self.stoptime)+
- ("(%.3f seconds)" % (self.stoptime - self.starttime))+
+ (" (%.3f seconds)" % (self.stoptime - self.starttime))+
"