From 3e5a5e250c4c5e7afde65a4bd1840a3510eccf3f Mon Sep 17 00:00:00 2001 From: Ruud Date: Thu, 3 May 2012 21:48:01 +0200 Subject: [PATCH] Don't save in_wanted and in_library recursively. fixes #202 --- couchpotato/core/plugins/library/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/couchpotato/core/plugins/library/main.py b/couchpotato/core/plugins/library/main.py index 11c212ab..1a4880ca 100644 --- a/couchpotato/core/plugins/library/main.py +++ b/couchpotato/core/plugins/library/main.py @@ -68,6 +68,7 @@ class LibraryPlugin(Plugin): do_update = False else: info = fireEvent('movie.info', merge = True, identifier = identifier) + del info['in_wanted'], info['in_library'] # Don't need those here if not info or len(info) == 0: log.error('Could not update, no movie info to work with: %s' % identifier) return False