Mercurial > hg
changeset 43612:dc9c570a3818
dirstate: re-blacken file
This got overlooked in landing a recent patch, but it's easy to fix up.
Differential Revision: https://phab.mercurial-scm.org/D7367
author | Augie Fackler <augie@google.com> |
---|---|
date | Mon, 11 Nov 2019 16:14:35 -0500 |
parents | 27c25c0dc967 |
children | dbc39f028c9f |
files | mercurial/dirstate.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/dirstate.py Wed Nov 06 16:24:24 2019 +0100 +++ b/mercurial/dirstate.py Mon Nov 11 16:14:35 2019 -0500 @@ -1114,7 +1114,9 @@ # how to read the config file. numcpus = self._ui.configint("worker", "numcpus") if numcpus is not None: - encoding.environ.setdefault(b'RAYON_NUM_THREADS', b'%d' % numcpus) + encoding.environ.setdefault( + b'RAYON_NUM_THREADS', b'%d' % numcpus + ) workers_enabled = self._ui.configbool("worker", "enabled", True) if not workers_enabled: