From patchwork Thu May 7 23:20:11 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D8509: formatting: add missing newline From: phabricator X-Patchwork-Id: 46292 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Thu, 7 May 2020 23:20:11 +0000 Alphare created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REPOSITORY rHG Mercurial BRANCH stable REVISION DETAIL https://phab.mercurial-scm.org/D8509 AFFECTED FILES mercurial/utils/procutil.py CHANGE DETAILS To: Alphare, #hg-reviewers Cc: mercurial-patches, mercurial-devel diff --git a/mercurial/utils/procutil.py b/mercurial/utils/procutil.py --- a/mercurial/utils/procutil.py +++ b/mercurial/utils/procutil.py @@ -612,6 +612,7 @@ # We use a thread to make the overhead tiny. def _do_wait(): os.waitpid(pid, 0) + threading.Thread(target=_do_wait, daemon=True).start() return # Parent process