fix bug introduced in recent Params removal

This commit is contained in:
Joey Hess 2015-06-02 16:28:05 -04:00
parent 2996b7c713
commit 6688f52577

View file

@ -108,7 +108,7 @@ check v ps url = maybe False (not . null . pageLinks) <$> query v ps url
supported :: QuviVersion -> URLString -> IO Bool supported :: QuviVersion -> URLString -> IO Bool
supported NoQuvi _ = return False supported NoQuvi _ = return False
supported Quvi04 url = boolSystem "quvi" supported Quvi04 url = boolSystem "quvi"
[ Param "--verbosity mute" [ Param "--verbosity", Param "mute"
, Param "--support" , Param "--support"
, Param url , Param url
] ]