diff --git a/chasten/main.py b/chasten/main.py index 00d376bc..2a88c742 100644 --- a/chasten/main.py +++ b/chasten/main.py @@ -912,11 +912,11 @@ def log() -> None: @cli.command() def version(): - """Display the version of Chasten.""" + """🖥️ Display the version of chasten.""" # Get Chasten version from util file version_string = util.get_chasten_version() # output chasten version - typer.echo(f"{version_string}") + typer.echo(f"chasten {version_string}") # ---