mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
minor fix for Github auto issue, will put the version number now
This commit is contained in:
parent
7cf2d26e89
commit
4a752ea87e
1 changed files with 4 additions and 1 deletions
|
|
@ -14,6 +14,7 @@ from lib.settings import (
|
||||||
set_color,
|
set_color,
|
||||||
get_latest_log_file,
|
get_latest_log_file,
|
||||||
CURRENT_LOG_FILE_PATH,
|
CURRENT_LOG_FILE_PATH,
|
||||||
|
VERSION
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -71,10 +72,12 @@ def request_issue_creation():
|
||||||
|
|
||||||
issue_data = {
|
issue_data = {
|
||||||
"title": issue_title,
|
"title": issue_title,
|
||||||
"body": "Error info:\n```{}````\n\n"
|
"body": "Zeus version:\n`{}`\n\n"
|
||||||
|
"Error info:\n```{}````\n\n"
|
||||||
"Running details:\n`{}`\n\n"
|
"Running details:\n`{}`\n\n"
|
||||||
"Commands used:\n`{}`\n\n"
|
"Commands used:\n`{}`\n\n"
|
||||||
"Log file info:\n```{}```".format(
|
"Log file info:\n```{}```".format(
|
||||||
|
VERSION,
|
||||||
str(stacktrace),
|
str(stacktrace),
|
||||||
str(platform.platform()),
|
str(platform.platform()),
|
||||||
" ".join(sys.argv),
|
" ".join(sys.argv),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue