D7367: dirstate: re-blacken file
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Tue Nov 12 03:03:38 UTC 2019
Closed by commit rHGdc9c570a3818: dirstate: re-blacken file (authored by durin42).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7367?vs=18026&id=18034
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7367/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7367
AFFECTED FILES
mercurial/dirstate.py
CHANGE DETAILS
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -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:
To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list