From 0e4800f73c7a619d479b3dd36ba55ba73303f9d4 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 14 Apr 2015 09:30:01 +0200 Subject: [PATCH] Changing default answer for sitemap checking to N --- lib/utils/crawler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/utils/crawler.py b/lib/utils/crawler.py index e7dfc75e6..42d53436a 100644 --- a/lib/utils/crawler.py +++ b/lib/utils/crawler.py @@ -123,9 +123,9 @@ def crawl(target): if not conf.sitemapUrl: message = "do you want to check for the existence of " - message += "site's sitemap(.xml) [Y/n] " - test = readInput(message, default="Y") - if test[0] not in ("n", "N"): + message += "site's sitemap(.xml) [y/N] " + test = readInput(message, default="n") + if test[0] in ("y", "Y"): items = None url = "%s://%s:%d/sitemap.xml" % (conf.scheme, conf.hostname, conf.port) try: