Merge pull request #320 from adam111316/feature/FixProviderUpgrade

Fix provider consolidation cache upgrade
This commit is contained in:
adam111316 2015-04-03 14:02:42 +08:00
commit 4844e212a6
2 changed files with 2 additions and 1 deletions

View file

@ -123,6 +123,7 @@
* Fix loading shows from the DB that have NULL IMDb id
* Change order of snatched provider images to chronological on History layout compact and add ordinal indicators in the tooltips
* Fix XEM Exceptions in case of bad data from XEM
* Fix provider consolidation cache upgrade
### 0.7.2 (2015-03-10 17:05:00 UTC)

View file

@ -121,6 +121,6 @@ class ConsolidateProviders(AddNetworkConversions):
current_tables = set(self.listTables())
remove_tables = list(current_tables - keep_tables)
for table in remove_tables:
self.connection.action('DROP TABLE %s' % table)
self.connection.action('DROP TABLE [%s]' % table)
self.incDBVersion()