forked from orbit-oss/flask
Use the whole sys.version string
This commit is contained in:
parent
6bee3e4995
commit
6b28ceba83
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ def get_version(ctx, param, value):
|
|||
message = 'Flask %(version)s\nPython %(python_version)s'
|
||||
click.echo(message % {
|
||||
'version': __version__,
|
||||
'python_version': sys.version[:3],
|
||||
'python_version': sys.version,
|
||||
}, color=ctx.color)
|
||||
ctx.exit()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue