From 6f05a8e656e724db275dda0189db912872a62fed Mon Sep 17 00:00:00 2001 From: ekultek Date: Tue, 14 Nov 2017 12:54:22 -0600 Subject: [PATCH] bumped version number, added return True to the blacklist parsing --- lib/core/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index db7d0c0..7b69710 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -55,7 +55,7 @@ CLONE = "https://github.com/ekultek/zeus-scanner.git" ISSUE_LINK = "https://github.com/ekultek/zeus-scanner/issues" # current version -VERSION = "1.2.12".format(PATCH_ID) +VERSION = "1.2.13".format(PATCH_ID) # colors to output depending on the version VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30} @@ -1057,3 +1057,4 @@ def parse_blacklist(dork, path, batch=False): shutdown() else: prompt(prompt_msg, opts="yN", default="y") + return True