diff options
author | Sam T <pxqr.sta@gmail.com> | 2013-06-12 08:13:18 +0400 |
---|---|---|
committer | Sam T <pxqr.sta@gmail.com> | 2013-06-12 08:13:18 +0400 |
commit | eadb3a6826fb784c33b10b2eab7d4f7bf72b0043 (patch) | |
tree | d7ca09465f9fa90fc61732da659231353b797f31 /src/Network/BitTorrent/Tracker/Protocol.hs | |
parent | 69c24795715ecb871433bed46e0f43b777b3ca25 (diff) |
- Remove some debug stuff.
Diffstat (limited to 'src/Network/BitTorrent/Tracker/Protocol.hs')
-rw-r--r-- | src/Network/BitTorrent/Tracker/Protocol.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Network/BitTorrent/Tracker/Protocol.hs b/src/Network/BitTorrent/Tracker/Protocol.hs index efc709e2..f7599ba2 100644 --- a/src/Network/BitTorrent/Tracker/Protocol.hs +++ b/src/Network/BitTorrent/Tracker/Protocol.hs | |||
@@ -230,7 +230,6 @@ askTracker req = do | |||
230 | 230 | ||
231 | rawResp <- simpleHTTP r | 231 | rawResp <- simpleHTTP r |
232 | respBody <- getResponseBody rawResp | 232 | respBody <- getResponseBody rawResp |
233 | print $ respBody | ||
234 | checkResult $ decoded respBody | 233 | checkResult $ decoded respBody |
235 | where | 234 | where |
236 | 235 | ||
@@ -247,5 +246,5 @@ leaveTracker req = do | |||
247 | let r = mkHTTPRequest (encodeRequest req) | 246 | let r = mkHTTPRequest (encodeRequest req) |
248 | 247 | ||
249 | rawResp <- simpleHTTP r | 248 | rawResp <- simpleHTTP r |
250 | respBody <- getResponseBody rawResp | 249 | _ <- getResponseBody rawResp |
251 | return () | 250 | return () |