From 569e591f1cc7831f4d1ad0f4176862778f57a494 Mon Sep 17 00:00:00 2001 From: calvin Date: Thu, 18 May 2000 12:18:56 +0000 Subject: [PATCH] getContent fix git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@87 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkcheck/HttpUrlData.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linkcheck/HttpUrlData.py b/linkcheck/HttpUrlData.py index 12159f6e..b4084b44 100644 --- a/linkcheck/HttpUrlData.py +++ b/linkcheck/HttpUrlData.py @@ -165,7 +165,7 @@ class HttpUrlData(UrlData): self.data = self.urlConnection.read() self.downloadtime = time.time() - t self._init_html_comments() - #Config.debug(Config.DebugDelim+self.data+Config.DebugDelim) + return self.data def isHtml(self): if not (self.valid and self.mime):