Skip to content

Commit db07df4

Browse files
committed
Fix formatting
1 parent 0c805ce commit db07df4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

llvm/utils/lit/lit/TestRunner.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ def executeShCmd(cmd, shenv, results, timeout=0):
206206
except InternalShellError:
207207
e = sys.exc_info()[1]
208208
finalExitCode = 127
209-
results.append(ShellCommandResult(e.command, "", e.message, finalExitCode, False))
209+
results.append(
210+
ShellCommandResult(e.command, "", e.message, finalExitCode, False)
211+
)
210212
timeoutHelper.cancel()
211213
timeoutInfo = None
212214
if timeoutHelper.timeoutReached():

0 commit comments

Comments
 (0)