Merge pull request #289 from JackDandy/feature/FixMissingForceWebAttr

Fix issue with missing QueueItemForceUpdate object has no attribute 'for...
This commit is contained in:
JackDandy 2015-03-17 19:48:15 +00:00
commit a3af54b330
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):