packages feed

hastily 0.1.0.4 → 0.1.0.5

raw patch · 2 files changed

+3/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

hastily.cabal view
@@ -1,5 +1,5 @@ name:                hastily-version:             0.1.0.4+version:             0.1.0.5 synopsis:            A program to download subtitle files. description:         Please see README.md homepage:            http://bitbucket.org/sras/hastily@@ -42,6 +42,7 @@                        exceptions,                        hxt   default-language:    Haskell2010+  executable hastily   hs-source-dirs:      app
src/Text/Hastily/MovieInfoSources/Omdb/Omdb.hs view
@@ -34,5 +34,5 @@             putStrLn "Querying OMDB for movie details failed!"             return $ Left err         Right response_body -> case eitherDecode response_body::Either String OMDBSearchResult of-            Left err -> error err+            Left err -> error $ "Your search for '" <> (cs slug) <> "' did not yield any results!"             Right result -> return $ Right result