diff options
author | Joey Hess <joeyh@joeyh.name> | 2014-12-08 13:57:13 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2014-12-08 13:57:13 -0400 |
commit | 28764ce2dc29d1d93989b4061b5b12bac10902de (patch) | |
tree | 3b052b0785d387a86dfd9a14d8fd885f2d78d809 /Types/Remote.hs | |
parent | 335024d92294bd9504e9e9cd42ec0a4addfc4d69 (diff) |
implement CLAIMURL for external special remote
Diffstat (limited to 'Types/Remote.hs')
-rw-r--r-- | Types/Remote.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Types/Remote.hs b/Types/Remote.hs index 46a0648bb..3f71e1fb4 100644 --- a/Types/Remote.hs +++ b/Types/Remote.hs @@ -103,7 +103,7 @@ data RemoteA a = Remote { -- Information about the remote, for git annex info to display. getInfo :: a [(String, String)], -- Some remotes can download from an url (or uri). - claimUrl :: Maybe (URLString -> IO Bool) + claimUrl :: Maybe (URLString -> a Bool) } instance Show (RemoteA a) where |