]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Fix URL plural 3178/head
authorMorteza Naghizadeh <tell.reganto@gmail.com>
Wed, 24 Aug 2022 14:33:30 +0000 (19:03 +0430)
committerGitHub <noreply@github.com>
Wed, 24 Aug 2022 14:33:30 +0000 (19:03 +0430)
demos/webspider/webspider.py

index dcc0afa1eaa43d3d504e9a0262b2ab098ae9620d..d7757917f4cfe42df2373489aa7bb84b7354f255 100755 (executable)
@@ -86,7 +86,7 @@ async def main():
     await q.join(timeout=timedelta(seconds=300))
     assert fetching == (fetched | dead)
     print("Done in %d seconds, fetched %s URLs." % (time.time() - start, len(fetched)))
-    print("Unable to fetch %s URLS." % len(dead))
+    print("Unable to fetch %s URLs." % len(dead))
 
     # Signal all the workers to exit.
     for _ in range(concurrency):