diff options
author | Joey Hess <joey@kitenet.net> | 2011-05-16 22:19:15 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-05-16 22:19:15 -0400 |
commit | 5068985020a4fbd699721cd506250316c55f129f (patch) | |
tree | e03cd2bbc56f20bfb90417e2c9f3a2415d2a5de8 | |
parent | 1e3da8efb0f303f8e03c39c0c0e521c19708c88d (diff) |
rejigger what's --fast
-rw-r--r-- | Command/Status.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Command/Status.hs b/Command/Status.hs index a82fc9e1c..85a6a5a4b 100644 --- a/Command/Status.hs +++ b/Command/Status.hs @@ -57,14 +57,14 @@ faststats :: [Stat] faststats = [ supported_backends , supported_remote_types - , local_annex_keys - , local_annex_size , tmp_size , bad_data_size ] slowstats :: [Stat] slowstats = - [ total_annex_keys + [ local_annex_keys + , local_annex_size + , total_annex_keys , total_annex_size , backend_usage ] |