diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-09-09 15:06:54 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-09-09 15:06:54 -0400 |
commit | 2408f5c6084aa04a09b36edcd264ce6bc7177c93 (patch) | |
tree | c745dce52ab6510948402eb1585b13718b39da3e /Types | |
parent | 8f8a17cf1855d809bf3655a3e4e9351b3850d3f2 (diff) |
addurl, get: Added --json-progress option, which adds progress objects to the json output.
This doesn't work right when used with -J yet, and there is some really
ugly hand-crafting of part of the json output.
Diffstat (limited to 'Types')
-rw-r--r-- | Types/Messages.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Types/Messages.hs b/Types/Messages.hs index 368054af1..a155cae2a 100644 --- a/Types/Messages.hs +++ b/Types/Messages.hs @@ -15,7 +15,7 @@ import Data.Default import System.Console.Regions (ConsoleRegion) #endif -data OutputType = NormalOutput | QuietOutput | JSONOutput +data OutputType = NormalOutput | QuietOutput | JSONOutput Bool deriving (Show) data SideActionBlock = NoBlock | StartBlock | InBlock |