Skip to content

Commit

Permalink
remove color from conan --version (#15002)
Browse files Browse the repository at this point in the history
  • Loading branch information
memsharded authored Oct 23, 2023
1 parent 02d0b7b commit 3c6c24a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conan/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def run(self, *args):
command = self._commands[command_argument]
except KeyError as exc:
if command_argument in ["-v", "--version"]:
cli_out_write("Conan version %s" % client_version, fg=Color.BRIGHT_GREEN)
cli_out_write("Conan version %s" % client_version)
return

if command_argument in ["-h", "--help"]:
Expand Down

0 comments on commit 3c6c24a

Please sign in to comment.