Skip to content

Commit

Permalink
Merge pull request #97 from p0dalirius/changed-symbol-in-prompt-for-c…
Browse files Browse the repository at this point in the history
…ompatibility

[enhancement] Changed symbol in prompt for compatibility
  • Loading branch information
p0dalirius authored Aug 7, 2024
2 parents cc0a740 + 71df212 commit 1b37ce3
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 @@ -1146,12 +1146,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"

# Session ID if
session_prompt = ""
Expand Down

0 comments on commit 1b37ce3

Please sign in to comment.