diff --git a/hastily.cabal b/hastily.cabal
--- a/hastily.cabal
+++ b/hastily.cabal
@@ -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
diff --git a/src/Text/Hastily/MovieInfoSources/Omdb/Omdb.hs b/src/Text/Hastily/MovieInfoSources/Omdb/Omdb.hs
--- a/src/Text/Hastily/MovieInfoSources/Omdb/Omdb.hs
+++ b/src/Text/Hastily/MovieInfoSources/Omdb/Omdb.hs
@@ -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
