Fix provider consolidation cache upgrade

This commit is contained in:
Adam 2015-04-03 13:59:23 +08:00
parent 2c2d8ab87f
commit 6dc6341e05
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()