From f27aaf35da4bec39da692a0f2b3577db8c5c77f1 Mon Sep 17 00:00:00 2001 From: ekultek Date: Sat, 2 Dec 2017 11:24:12 -0600 Subject: [PATCH] patch for an issue where the status code was in the wrong place issue #219 --- lib/core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index 8319854..53d0b51 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -46,7 +46,7 @@ CLONE = "https://github.com/ekultek/zeus-scanner.git" ISSUE_LINK = "https://github.com/ekultek/zeus-scanner/issues" # current version -VERSION = "1.3.15-pre".format(PATCH_ID) +VERSION = "1.3.16.{}".format(PATCH_ID) # colors to output depending on the version VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}