summaryrefslogtreecommitdiff
path: root/http
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-03-11 14:41:27 +0000
committerComment <tim@gray.(none)>2013-03-11 14:41:27 +0000
commitd1ad9a5c002aa4fafceb8f9740e37238e404177d (patch)
treec701c1fdfd4492d5cc490751b386e66ec0bb45d1 /http
parent55a63ac09264a38fafdf4a218e86b598030fb47c (diff)
graph linking and traversing
Diffstat (limited to 'http')
-rwxr-xr-xhttp2
1 files changed, 1 insertions, 1 deletions
diff --git a/http b/http
index cbf89b2..0c0314f 100755
--- a/http
+++ b/http
@@ -6,7 +6,7 @@ parser.add_argument("method",default="GET",nargs='?')
parser.add_argument("path",default="/",nargs='?')
parser.add_argument("body",default="body",nargs='?')
args=parser.parse_args()
-connection = httplib.HTTPConnection('54.228.219.55:9000')
+connection = httplib.HTTPConnection('127.0.0.1:9000')
connection.request(args.method, args.path, args.body)
print connection.getresponse().read()