Skip to content

Commit 146ff8c

Browse files
committed
BUGFIX: Fix rendering of colors in syscheck, _render_interfaces
1 parent 1cac8a4 commit 146ff8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wifite/util/system_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ def _render_interfaces(self):
716716
else:
717717
masked = iface.mac
718718
Color.pl(f' MAC: {masked} Mode: {{C}}{iface.mode}{{W}} '
719-
f'Up: {"{{G}}yes{{W}}" if iface.is_up else "{{O}}no{{W}}"}')
719+
f'Up: {"{G}yes{W}" if iface.is_up else "{O}no{W}"}')
720720

721721
# Capability matrix
722722
mon = '{G}✓{W}' if iface.supports_monitor else '{R}✗{W}'

0 commit comments

Comments
 (0)