Commit 5e34b9e2 by Sébastien Eustace

Fix color consistency

parent 92b1e61c
......@@ -306,7 +306,7 @@ The <c1>init</c1> command creates a basic <comment>pyproject.toml</> file in the
requirement["name"] = name
self.line(
"Using version <info>{}</> for <info>{}</>".format(version, name)
"Using version <b>{}</b> for <c1>{}</c1>".format(version, name)
)
else:
# check that the specified version/constraint exists
......
......@@ -333,7 +333,7 @@ class Installer:
if operation.skipped:
if self.is_verbose() and (self._execute_operations or self.is_dry_run()):
self._io.write_line(
" - Skipping <c1>{}</c1> (<comment>{}</>) {}".format(
" - Skipping <c1>{}</c1> (<b>{}</b>) {}".format(
target.pretty_name,
target.full_pretty_version,
operation.skip_reason,
......@@ -344,7 +344,7 @@ class Installer:
if self._execute_operations or self.is_dry_run():
self._io.write_line(
" - Updating <info>{}</> (<comment>{}</> -> <comment>{}</>)".format(
" - Updating <c1>{}</c1> (<b>{}</b> -> <b>{}</b>)".format(
target.pretty_name,
source.full_pretty_version,
target.full_pretty_version,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment