Skip to content

Commit a7d9ce5

Browse files
committed
taking an idea from issue #596, fixes a misleading info message and changes to
1 parent fabc3af commit a7d9ce5

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

autosploit/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
)
1313
from lib.output import (
1414
info,
15-
warning,
1615
prompt,
1716
misc_info
1817
)

lib/banner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import random
33

4-
VERSION = "3.0.1"
4+
VERSION = "3.0.2"
55

66

77
def banner_1(line_sep="#--", space=" " * 30):

lib/term/terminal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ def terminal_main_display(self, tokens, extra_commands=None, save_history=True):
402402
terminal main display
403403
"""
404404
lib.output.warning(
405-
"no arguments have been passed, dropping into terminal session. "
405+
"no arguments have been parsed at run time, dropping into terminal session. "
406406
"to get help type `help` to quit type `exit/quit` to get help on "
407407
"a specific command type `command help`"
408408
)

0 commit comments

Comments
 (0)