diff --git a/news/80B9D718-3054-41C7-B920-78348DFD01A6.trivial.rst b/news/80B9D718-3054-41C7-B920-78348DFD01A6.trivial.rst new file mode 100644 index 000000000..e69de29bb diff --git a/src/pip/_internal/utils/logging.py b/src/pip/_internal/utils/logging.py index 687bfe3b2..87b91d23d 100644 --- a/src/pip/_internal/utils/logging.py +++ b/src/pip/_internal/utils/logging.py @@ -81,6 +81,7 @@ def get_indentation(): class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" def __init__(self, *args, **kwargs): """ @@ -119,9 +120,7 @@ class IndentingFormatter(logging.Formatter): prefix = '' if self.add_timestamp: - # TODO: Use Formatter.default_time_format after dropping PY2. - t = self.formatTime(record, "%Y-%m-%dT%H:%M:%S") - prefix = '{t},{record.msecs:03.0f} '.format(**locals()) + prefix = f"{self.formatTime(record)} " prefix += " " * get_indentation() formatted = "".join([ prefix + line