aboutsummaryrefslogtreecommitdiff
path: root/lib/db.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/db.py')
-rw-r--r--lib/db.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db.py b/lib/db.py
index 4c99795..e1fce23 100644
--- a/lib/db.py
+++ b/lib/db.py
@@ -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()