diff options
author | Joey Hess <joey@kitenet.net> | 2013-08-22 23:27:12 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-08-22 23:27:12 -0400 |
commit | 4c8bf8446a2469823bca4b55079a3b0caab6ad03 (patch) | |
tree | 67716aea8e54c5c107bdb9a41b1770181a720c19 | |
parent | e28cea448c550e741926cfca5a12db1dc07b5a04 (diff) |
unimportant typo
(u and u' happened to be the same)
-rw-r--r-- | Remote/Web.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Web.hs b/Remote/Web.hs index b49ab0d1e..7d1808bd4 100644 --- a/Remote/Web.hs +++ b/Remote/Web.hs @@ -74,7 +74,7 @@ downloadKey key _file dest _p = get =<< getUrls key case downloader of QuviDownloader -> flip downloadUrl dest =<< withQuviOptions Quvi.queryLinks [Quvi.httponly, Quvi.quiet] u' - _ -> downloadUrl [u] dest + _ -> downloadUrl [u'] dest downloadKeyCheap :: Key -> FilePath -> Annex Bool downloadKeyCheap _ _ = return False |