From 97ca6f4c69848ce5395483eab1c82846a68f3625 Mon Sep 17 00:00:00 2001 From: JackDandy Date: Tue, 17 Mar 2015 19:11:44 +0000 Subject: [PATCH] Fix issue with missing QueueItemForceUpdate object has no attribute 'force_web'. --- CHANGES.md | 1 + sickbeard/show_queue.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 8e8c47eb..0dfd3419 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -69,6 +69,7 @@ * Add IMDb update capability back to the "Force Full Update" button on the displayShow page * Fix to correctly use wanted_begin and wanted_latest when adding shows * Change Log/Error Log Menu icons to correct ones +* Fix issue with missing QueueItemForceUpdate object has no attribute 'force_web' ### 0.7.2 (2015-03-10 17:05:00 UTC) diff --git a/sickbeard/show_queue.py b/sickbeard/show_queue.py index ed44e65d..fc415d9c 100644 --- a/sickbeard/show_queue.py +++ b/sickbeard/show_queue.py @@ -612,6 +612,7 @@ class QueueItemForceUpdate(QueueItemUpdate): def __init__(self, show=None): ShowQueueItem.__init__(self, ShowQueueActions.FORCEUPDATE, show) self.force = True + self.force_web = False class QueueItemForceUpdateWeb(QueueItemUpdate):