We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68ea927 commit a589fd7Copy full SHA for a589fd7
wifite/util/color.py
@@ -103,6 +103,10 @@ def pexception(exception):
103
# Don't dump trace for the "no targets found" case.
104
if 'No targets found' in str(exception):
105
return
106
+
107
+ # Don't dump trace for the "interface not in monitor mode" case.
108
+ if 'Enabled interface not in monitor mode' in str(exception):
109
+ return
110
111
from ..config import Configuration
112
if Configuration.verbose > 0 or Configuration.print_stack_traces:
0 commit comments