Skip to content

Commit

Permalink
application: ensure warning is written to stderr
Browse files Browse the repository at this point in the history
Resolves: #2754
  • Loading branch information
finswimmer authored Oct 7, 2020
1 parent fe58003 commit 2d00a1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/console/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self):
"See <fg=blue>https://python-poetry.org/docs/managing-environments/</> "
"for more information."
).format(python_version, poetry_feature_release, python_version)
self._preliminary_io.write_line("<fg=yellow>{}</>\n".format(message))
self._preliminary_io.error_line("<fg=yellow>{}</>\n".format(message))

@property
def poetry(self):
Expand Down

0 comments on commit 2d00a1d

Please sign in to comment.