diff options
-rw-r--r-- | lib/db.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ class db_base: VALUES(?,?)''', (_hash, content_type,)) self.save() - def cash_del(self, _hash): + def cache_del(self, _hash): self.cursor.execute('DELETE FROM cache WHERE hash=?', (_hash,)) self.save() |