From e8ac7414f2852269318a7e158f87f0dbe3c9913d Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 20 Jun 2011 21:36:15 +0000 Subject: [PATCH] bug fix --- lib/utils/crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/crawler.py b/lib/utils/crawler.py index 99df57dc9..5769d33a5 100644 --- a/lib/utils/crawler.py +++ b/lib/utils/crawler.py @@ -96,7 +96,7 @@ class Crawler: logger.info("searching for links with depth %d" % (i + 1)) runThreads(numThreads, crawlThread) clearConsoleLine(True) - threadData.shared.unprocessed = threadData.shared.deeper + threadData.shared.unprocessed = set(threadData.shared.deeper) except KeyboardInterrupt: warnMsg = "user aborted during crawling. sqlmap "