Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/dispatch.py @ 51900:607e94e01851
format: add many "missing" comma
Black was not adding them until the next changeset introduced a bunch of `from
__future__ import annotations` to most file. Since it make the next changeset
hard to read we introduce them in advance.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Mon, 16 Sep 2024 15:36:38 +0200 |
parents | 460e80488cf0 |
children | f4733654f144 |
comparison
equal
deleted
inserted
replaced
51899:f81e0ce5103a | 51900:607e94e01851 |
---|---|
298 if req.ui.logblockedtimes: | 298 if req.ui.logblockedtimes: |
299 req.ui._blockedtimes[b'command_duration'] = duration * 1000 | 299 req.ui._blockedtimes[b'command_duration'] = duration * 1000 |
300 req.ui.log( | 300 req.ui.log( |
301 b'uiblocked', | 301 b'uiblocked', |
302 b'ui blocked ms\n', | 302 b'ui blocked ms\n', |
303 **pycompat.strkwargs(req.ui._blockedtimes) | 303 **pycompat.strkwargs(req.ui._blockedtimes), |
304 ) | 304 ) |
305 return_code = ret & 255 | 305 return_code = ret & 255 |
306 req.ui.log( | 306 req.ui.log( |
307 b"commandfinish", | 307 b"commandfinish", |
308 b"%s exited %d after %0.2f seconds\n", | 308 b"%s exited %d after %0.2f seconds\n", |