undo last change

This commit is contained in:
mickael
2019-01-05 02:39:40 +00:00
parent f8b1b53fe9
commit 09ea30b4e4

2
ppf.py
View File

@@ -100,7 +100,6 @@ def proxyfind(sqlite = None):
sqlite.executemany('INSERT INTO uris (added,url,check_time,error,driver) values(?,?,?,?,?)', new)
sqlite.commit()
_log('+%d item(s) from %s' % (len(new), search), 'added')
time.sleep(0.1)
sqlite.commit()
@@ -146,7 +145,6 @@ def proxyleech(sqlite, rows):
if len(add) > 500:
insert_proxies(add, row[0], sqlite)
add = []
time.sleep(0.1)
if len(add): insert_proxies(add, row[0], sqlite)