From f33586a533ddb7179efb4b22504776938c382063 Mon Sep 17 00:00:00 2001 From: calvin Date: Mon, 6 Dec 2004 17:54:31 +0000 Subject: [PATCH] comment method docs git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2085 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkcheck/logger/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linkcheck/logger/__init__.py b/linkcheck/logger/__init__.py index 3f144ff1..0cc0bedf 100644 --- a/linkcheck/logger/__init__.py +++ b/linkcheck/logger/__init__.py @@ -95,7 +95,8 @@ class Logger (object): self.comment(msg % (now.year - 2000)) def comment (self, s, **args): - """Print given comment and a newline.""" + """Print a comment and a newline. This method just prints + the given string.""" self.writeln(s=s, **args) def wrap (self, lines, width):