Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 492a410 commit 1b3a98bCopy full SHA for 1b3a98b
1 file changed
lib/core/option.py
@@ -511,7 +511,7 @@ def _setCrawler():
511
crawl(target)
512
513
if conf.verbose in (1, 2):
514
- status = '%d/%d links visited (%d%%)' % (i + 1, len(targets), round(100.0 * (i + 1) / len(targets)))
+ status = "%d/%d links visited (%d%%)" % (i + 1, len(targets), round(100.0 * (i + 1) / len(targets)))
515
dataToStdout("\r[%s] [INFO] %s" % (time.strftime("%X"), status), True)
516
except Exception, ex:
517
errMsg = "problem occurred while crawling at '%s' ('%s')" % (target, ex)
0 commit comments