From b78c2d200e63ddcc0974c7edd27c2d705def1b82 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 31 Oct 2018 01:52:41 -0400 Subject: [PATCH] DOC: minor typo fix --- linkcheck/cache/urlqueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linkcheck/cache/urlqueue.py b/linkcheck/cache/urlqueue.py index 42bb964a..a71c615b 100644 --- a/linkcheck/cache/urlqueue.py +++ b/linkcheck/cache/urlqueue.py @@ -114,7 +114,7 @@ class UrlQueue (object): self.not_empty.notify() def _put (self, url_data): - """Put URL in queue, increase number of unfished tasks.""" + """Put URL in queue, increase number of unfinished tasks.""" if self.shutdown or self.max_allowed_urls == 0: return log.debug(LOG_CACHE, "queueing %s", url_data.url)