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 ...@@ -306,7 +306,7 @@ The <c1>init</c1> command creates a basic <comment>pyproject.toml</> file in the
requirement["name"] = name requirement["name"] = name
self.line( self.line(
"Using version <info>{}</> for <info>{}</>".format(version, name) "Using version <b>{}</b> for <c1>{}</c1>".format(version, name)
) )
else: else:
# check that the specified version/constraint exists # check that the specified version/constraint exists
......
...@@ -333,7 +333,7 @@ class Installer: ...@@ -333,7 +333,7 @@ class Installer:
if operation.skipped: if operation.skipped:
if self.is_verbose() and (self._execute_operations or self.is_dry_run()): if self.is_verbose() and (self._execute_operations or self.is_dry_run()):
self._io.write_line( self._io.write_line(
" - Skipping <c1>{}</c1> (<comment>{}</>) {}".format( " - Skipping <c1>{}</c1> (<b>{}</b>) {}".format(
target.pretty_name, target.pretty_name,
target.full_pretty_version, target.full_pretty_version,
operation.skip_reason, operation.skip_reason,
...@@ -344,7 +344,7 @@ class Installer: ...@@ -344,7 +344,7 @@ class Installer:
if self._execute_operations or self.is_dry_run(): if self._execute_operations or self.is_dry_run():
self._io.write_line( self._io.write_line(
" - Updating <info>{}</> (<comment>{}</> -> <comment>{}</>)".format( " - Updating <c1>{}</c1> (<b>{}</b> -> <b>{}</b>)".format(
target.pretty_name, target.pretty_name,
source.full_pretty_version, source.full_pretty_version,
target.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