From 945e0dceabfb949f2a61c8cc08fe06cbf7671330 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sun, 30 Sep 2018 21:59:50 +0200 Subject: [PATCH] crawler: typo in comment --- morss/crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morss/crawler.py b/morss/crawler.py index 0d44d99..9f9927e 100644 --- a/morss/crawler.py +++ b/morss/crawler.py @@ -512,7 +512,7 @@ import pymysql.cursors class MySQLCacheHandler(BaseCache): - " NB. Requires mono-threading, as pymysql doesn't isn't thread-safe " + " NB. Requires mono-threading, as pymysql isn't thread-safe " def __init__(self, user, password, database, host='localhost'): self.con = pymysql.connect(host=host, user=user, password=password, database=database, charset='utf8', autocommit=True)