diff options
author | Sam T <pxqr.sta@gmail.com> | 2013-08-16 09:34:41 +0400 |
---|---|---|
committer | Sam T <pxqr.sta@gmail.com> | 2013-08-16 09:34:41 +0400 |
commit | 117f02a8e1dcda839e700d92e323a418c15522f5 (patch) | |
tree | c7714e2c3873fe8d16262f07a104ba03b021d59e /src/Network/BitTorrent/Tracker/HTTP.hs | |
parent | 9e7048216351f81b8d5c8c8e66b76b862ac9622f (diff) |
~ Fix some warnings.
Diffstat (limited to 'src/Network/BitTorrent/Tracker/HTTP.hs')
-rw-r--r-- | src/Network/BitTorrent/Tracker/HTTP.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Network/BitTorrent/Tracker/HTTP.hs b/src/Network/BitTorrent/Tracker/HTTP.hs index f781b847..4fef5e56 100644 --- a/src/Network/BitTorrent/Tracker/HTTP.hs +++ b/src/Network/BitTorrent/Tracker/HTTP.hs | |||
@@ -15,7 +15,7 @@ | |||
15 | -- | 15 | -- |
16 | module Network.BitTorrent.Tracker.HTTP | 16 | module Network.BitTorrent.Tracker.HTTP |
17 | ( askTracker, leaveTracker | 17 | ( askTracker, leaveTracker |
18 | , scrapeURL | 18 | , scrapeURL, scrape, scrapeOne |
19 | ) where | 19 | ) where |
20 | 20 | ||
21 | import Control.Applicative | 21 | import Control.Applicative |
@@ -30,7 +30,7 @@ import Data.URLEncoded as URL | |||
30 | import Network.URI | 30 | import Network.URI |
31 | import Network.HTTP | 31 | import Network.HTTP |
32 | 32 | ||
33 | import Data.Torrent.Metainfo | 33 | import Data.Torrent.Metainfo hiding (announce) |
34 | import Network.BitTorrent.Tracker.Protocol | 34 | import Network.BitTorrent.Tracker.Protocol |
35 | 35 | ||
36 | {----------------------------------------------------------------------- | 36 | {----------------------------------------------------------------------- |