From d505675f93fdad931f9dff5104ad0fc2b4d6098a Mon Sep 17 00:00:00 2001 From: Rembrand van Lakwijk Date: Sun, 12 Aug 2012 01:45:29 +0200 Subject: [PATCH] Fixed error when a movie is not found (oversight in porting from v1) --- couchpotato/core/providers/torrent/passthepopcorn/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/providers/torrent/passthepopcorn/main.py b/couchpotato/core/providers/torrent/passthepopcorn/main.py index 6ce32530..239d9fdc 100644 --- a/couchpotato/core/providers/torrent/passthepopcorn/main.py +++ b/couchpotato/core/providers/torrent/passthepopcorn/main.py @@ -266,7 +266,7 @@ class PassThePopcorn(TorrentProvider): results.append(new) self.found(new) if not results: - log.info("Found nothing for '%s'" % movie.name) + log.info("Found nothing for '%s'" % movieTitle) return results def getMoreInfo(self, item):