From 2ca0c09a85a9474c9a56087ebe064642a9d885fe Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sun, 3 Jan 2010 15:15:20 +0000 Subject: remove debugging code git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@402 86f53f14-5ff3-0310-afe5-9b438ce3f40c --- schemes/http.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/schemes/http.py b/schemes/http.py index e999c04..64c1afc 100644 --- a/schemes/http.py +++ b/schemes/http.py @@ -3,7 +3,7 @@ # # Copyright (C) 1998, 1999 Albert Hopkins (marduk) # Copyright (C) 2002 Mike W. Meyer -# Copyright (C) 2005, 2006, 2007, 2008 Arthur de Jong +# Copyright (C) 2005, 2006, 2007, 2008, 2010 Arthur de Jong # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -80,7 +80,6 @@ def fetch(link, acceptedtypes): conn = httplib.HTTPConnection(netloc) elif scheme == 'https': conn = httplib.HTTPSConnection(netloc) - conn.set_debuglevel(100) # start the request conn.putrequest('GET', path, skip_host=True) conn.putheader('Host', urllib.splitport(netloc)[0]) -- cgit v1.2.3