Skip to content
Snippets Groups Projects
Commit c432dc7c authored by Anders Carlsson's avatar Anders Carlsson
Browse files

Fix a runtime error I saw

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62448 91177308-0d34-0410-b5e6-96231b3b80d8
parent f15674c6
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ class PipedJob(Job):
"""PipedJob - A sequence of piped commands."""
def __init__(self, commands):
assert all_true(args, lambda x: isinstance(x, Arguments.Command))
assert Util.all_true(commands, lambda x: isinstance(x, Arguments.Command))
self.commands = list(commands)
def addJob(self, job):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment