mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
bumped version number
This commit is contained in:
parent
fa43d499c5
commit
7cf2d26e89
1 changed files with 5 additions and 4 deletions
|
|
@ -22,7 +22,7 @@ except NameError:
|
||||||
# clone link
|
# clone link
|
||||||
CLONE = "https://github.com/ekultek/zeus-scanner.git"
|
CLONE = "https://github.com/ekultek/zeus-scanner.git"
|
||||||
# current version <major.minor.commit.patch ID>
|
# current version <major.minor.commit.patch ID>
|
||||||
VERSION = "1.0.27"
|
VERSION = "1.0.27.de68"
|
||||||
# colors to output depending on the version
|
# colors to output depending on the version
|
||||||
VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}
|
VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}
|
||||||
# version string formatting
|
# version string formatting
|
||||||
|
|
@ -395,8 +395,9 @@ def write_to_log_file(data_to_write, path, filename):
|
||||||
for item in data_to_write:
|
for item in data_to_write:
|
||||||
item = item.strip()
|
item = item.strip()
|
||||||
log.write(str(item) + "\n")
|
log.write(str(item) + "\n")
|
||||||
logger.info(set_color(
|
|
||||||
"successfully wrote found items to '{}'...".format(full_file_path)
|
|
||||||
))
|
|
||||||
else:
|
else:
|
||||||
log.write(data_to_write + "\n")
|
log.write(data_to_write + "\n")
|
||||||
|
logger.info(set_color(
|
||||||
|
"successfully wrote found items to '{}'...".format(full_file_path)
|
||||||
|
))
|
||||||
|
return full_file_path
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue