D12375: tests: fix formatting issue in run-tests.py after c194e93d1ebc
spectral (Kyle Lippincott)
phabricator at mercurial-scm.org
Mon Mar 14 20:33:50 UTC 2022
spectral created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12375
AFFECTED FILES
tests/run-tests.py
CHANGE DETAILS
diff --git a/tests/run-tests.py b/tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -241,8 +241,11 @@
except (socket.error, OSError) as exc:
if exc.errno == errno.EADDRINUSE:
return True
- elif exc.errno in (errno.EADDRNOTAVAIL, errno.EPROTONOSUPPORT,
- errno.EAFNOSUPPORT):
+ elif exc.errno in (
+ errno.EADDRNOTAVAIL,
+ errno.EPROTONOSUPPORT,
+ errno.EAFNOSUPPORT,
+ ):
return False
else:
raise
To: spectral, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list