Skip to content

Commit

Permalink
Fixed prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius committed May 31, 2024
1 parent 9f2ea53 commit fb80132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smbclientng/core/InteractiveShell.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,12 +645,12 @@ def __prompt(self):
if self.config.no_colors:
connected_dot = "[v]"
else:
connected_dot = "\x1b[1;92m⏺ \x1b[0m"
connected_dot = "\x1b[1;92m⏺\x1b[0m"
else:
if self.config.no_colors:
connected_dot = "[x]"
else:
connected_dot = "\x1b[1;91m⏺ \x1b[0m"
connected_dot = "\x1b[1;91m⏺\x1b[0m"

if self.smbSession.smb_share is None:
if self.config.no_colors:
Expand Down

0 comments on commit fb80132

Please sign in to comment.