Fix issue with missing QueueItemForceUpdate object has no attribute 'force_web'.

This commit is contained in:
JackDandy 2015-03-17 19:11:44 +00:00
parent ab1907dfdf
commit 97ca6f4c69
2 changed files with 2 additions and 0 deletions

View file

@ -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)

View file

@ -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):