diff --git a/find_duplicate_files/find_duplicate_files.py b/find_duplicate_files/find_duplicate_files.py index f604add..9ab8b6a 100644 --- a/find_duplicate_files/find_duplicate_files.py +++ b/find_duplicate_files/find_duplicate_files.py @@ -49,7 +49,7 @@ class find_duplicate_files: self.cache_file = cache_file self.cache_db = sqlite3.connect(self.cache_file) self.cur = self.cache_db.cursor() - self.cur.execute("CREATE TABLE IF NOT EXIST files(hash, file)") + self.cur.execute("CREATE TABLE IF NOT EXISTS files(hash, file)") self.cache_db.commit() def _check_file_cache(self, file):