diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-06-02 16:28:05 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-06-02 16:28:05 -0400 |
commit | 8c3fdc5ec10d3489bd8ea2adeafe87cfc8d2d955 (patch) | |
tree | 5b7084bd3a5f41a98638af5f3617da0ddba01f2e /Utility/Quvi.hs | |
parent | e6251ab5348161929c82677e74dfbfeb4f93b418 (diff) |
fix bug introduced in recent Params removal
Diffstat (limited to 'Utility/Quvi.hs')
-rw-r--r-- | Utility/Quvi.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Quvi.hs b/Utility/Quvi.hs index 8d37b1c8f..2aacfaea2 100644 --- a/Utility/Quvi.hs +++ b/Utility/Quvi.hs @@ -108,7 +108,7 @@ check v ps url = maybe False (not . null . pageLinks) <$> query v ps url supported :: QuviVersion -> URLString -> IO Bool supported NoQuvi _ = return False supported Quvi04 url = boolSystem "quvi" - [ Param "--verbosity mute" + [ Param "--verbosity", Param "mute" , Param "--support" , Param url ] |