mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fix provider consolidation cache upgrade
This commit is contained in:
parent
2c2d8ab87f
commit
6dc6341e05
2 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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()
|
Loading…
Reference in a new issue