diff options
author | Jordan <me@jordan.im> | 2020-01-12 11:22:33 -0700 |
---|---|---|
committer | Jordan <me@jordan.im> | 2020-01-12 11:22:33 -0700 |
commit | 68b28c34c1e361b4a28ec9734fcd91a1801d4e48 (patch) | |
tree | a85a6d1dfb297de2a15b24a27be9b26c886ecef6 | |
parent | 90ebd3cbaa78a9f9c65b3a65acee24888e7b184e (diff) | |
download | ft-bypass-68b28c34c1e361b4a28ec9734fcd91a1801d4e48.tar.gz ft-bypass-68b28c34c1e361b4a28ec9734fcd91a1801d4e48.zip |
typo, cache_del()
-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() |