Skip to content

Commit cd056d0

Browse files
committed
Minor update
1 parent f48ba6e commit cd056d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/utils/crawler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def sitemap(url):
9090
SITEMAP_LOC.append(url)
9191
if url.endswith(".xml") and "sitemap" in url.lower():
9292
while True:
93-
warn_msg = "A sitemap recursion detected."
93+
warn_msg = "A sitemap recursion detected (" + url + ")."
9494
print(settings.print_warning_msg(warn_msg))
9595
if not menu.options.batch:
9696
question_msg = "Do you want to follow? [Y/n] > "

src/utils/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def sys_argv_errors():
216216
DESCRIPTION = "The command injection exploiter"
217217
AUTHOR = "Anastasios Stasinopoulos"
218218
VERSION_NUM = "3.3"
219-
REVISION = "36"
219+
REVISION = "37"
220220
STABLE_RELEASE = False
221221
if STABLE_RELEASE:
222222
VERSION = "v" + VERSION_NUM + "-stable"

0 commit comments

Comments
 (0)