Author: jmm-guest Date: 2005-09-24 10:14:55 +0000 (Sat, 24 Sep 2005) New Revision: 2150 Modified: tsck/tsck.py Log: fix typo Modified: tsck/tsck.py ==================================================================--- tsck/tsck.py 2005-09-24 09:43:08 UTC (rev 2149) +++ tsck/tsck.py 2005-09-24 10:14:55 UTC (rev 2150) @@ -1,8 +1,8 @@ #!/usr/bin/python import httplib -conn = httplib.HTTPConnection("spohr.debian.raw") -conn.request("GET", "/~joeyh/testing-security.html") +conn = httplib.HTTPConnection("spohr.debian.org") +conn.request("GET", "/~joeyh/testing-security.raw") r1 = conn.getresponse() print r1.status, r1.reason data1 = r1.read()