diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-01-03 16:15:20 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-01-03 16:15:20 +0100 |
commit | 2ca0c09a85a9474c9a56087ebe064642a9d885fe (patch) | |
tree | 3ae0beb69e2743f7abba2b1b9993a2d00ddf379f | |
parent | 0bbbbeed74c56959e770fee8c666b1d8f7abad14 (diff) |
remove debugging code
git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@402 86f53f14-5ff3-0310-afe5-9b438ce3f40c
-rw-r--r-- | schemes/http.py | 3 |
1 files changed, 1 insertions, 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]) |