summaryrefslogtreecommitdiff
path: root/Command/Info.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-07-09 16:05:45 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-07-09 16:05:45 -0400
commit525e04af35bb588b4f8a8721cfa77b2b285ac914 (patch)
tree9d00a7d7066a8ad30c9e6313706d47de2609f82a /Command/Info.hs
parent87896574f32be5aa1636facc494faeab34cd0845 (diff)
wip
Diffstat (limited to 'Command/Info.hs')
-rw-r--r--Command/Info.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/Info.hs b/Command/Info.hs
index 3012d4649..9b9e8f6ca 100644
--- a/Command/Info.hs
+++ b/Command/Info.hs
@@ -135,8 +135,8 @@ fileInfo file k = showCustom (unwords ["info", file]) $ do
remoteInfo :: Remote -> Annex ()
remoteInfo r = showCustom (unwords ["info", Remote.name r]) $ do
- info <- map (\(k, v) -> simpleStat k (pure v)) <$> Remote.getInfo r
- l <- selStats (remote_fast_stats r ++ info) (uuid_slow_stats (Remote.uuid r))
+ i <- map (\(k, v) -> simpleStat k (pure v)) <$> Remote.getInfo r
+ l <- selStats (remote_fast_stats r ++ i) (uuid_slow_stats (Remote.uuid r))
evalStateT (mapM_ showStat l) emptyStatInfo
return True