Fix TypeError
This commit is contained in:
parent
fb364a2275
commit
6d450b2be9
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class PlexDBBase(object):
|
|||
"""
|
||||
Removes the item from our Plex db
|
||||
"""
|
||||
self.cursor.execute('DELETE FROM ? WHERE plex_id = ?' % plex_type, (plex_id, ))
|
||||
self.cursor.execute('DELETE FROM %s WHERE plex_id = ?' % plex_type, (plex_id, ))
|
||||
|
||||
def every_plex_id(self, plex_type):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue