From 2b321a932e9dde6594162f83c8a512731319428c Mon Sep 17 00:00:00 2001 From: Lasse Vang Gravesen Date: Wed, 19 Sep 2012 18:22:48 +0200 Subject: [PATCH] imdbapi.com moved to omdbapi.com, so that's fixed. --- plugins/imdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/imdb.py b/plugins/imdb.py index 83e96e2..e9caf87 100644 --- a/plugins/imdb.py +++ b/plugins/imdb.py @@ -7,7 +7,7 @@ from util import hook, http def imdb(inp): '''.imdb -- gets information about from IMDb''' - content = http.get_json("http://www.imdbapi.com/", t=inp) + content = http.get_json("http://www.omdbapi.com/", t=inp) if content['Response'] == 'Movie Not Found': return 'movie not found'