crawler: remove unused code
This commit is contained in:
		@@ -482,7 +482,7 @@ import sqlite3
 | 
			
		||||
 | 
			
		||||
class SQLiteCache(BaseCache):
 | 
			
		||||
    def __init__(self, filename=':memory:'):
 | 
			
		||||
        self.con = sqlite3.connect(filename or sqlite_default, detect_types=sqlite3.PARSE_DECLTYPES, check_same_thread=False)
 | 
			
		||||
        self.con = sqlite3.connect(filename, detect_types=sqlite3.PARSE_DECLTYPES, check_same_thread=False)
 | 
			
		||||
 | 
			
		||||
        with self.con:
 | 
			
		||||
            self.con.execute('CREATE TABLE IF NOT EXISTS data (url UNICODE PRIMARY KEY, code INT, msg UNICODE, headers UNICODE, data BLOB, timestamp INT)')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user