Skip to content

Commit 8621e89

Browse files
committed
Reword comment in _WinBashStatus.check for clarity
1 parent 0b7ee17 commit 8621e89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: test/test_index.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ def check(cls):
9696
return cls.INAPPLICABLE
9797

9898
try:
99-
# Print rather than returning the test command's exit status so that if a
100-
# failure occurs before we even get to this point, we will detect it. See
101-
# https://superuser.com/a/1749811 for information on ways to check for WSL.
99+
# Output rather than forwarding the test command's exit status so that if a
100+
# failure occurs before we even get to this point, we will detect it. For
101+
# information on ways to check for WSL, see https://superuser.com/a/1749811.
102102
script = 'test -e /proc/sys/fs/binfmt_misc/WSLInterop; echo "$?"'
103103
command = ["bash.exe", "-c", script]
104104
proc = subprocess.run(command, capture_output=True, check=True, text=True)

0 commit comments

Comments
 (0)