Skip to content

Commit 0e3bb0b

Browse files
committed
Make redirect portable
1 parent 5859912 commit 0e3bb0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

externalTools/blossom/blossomTest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def testBlossom(self):
5050
system("blossom_randGraph.py > %s" % tempInputFile)
5151

5252
# Run blossom5
53-
system("blossom5 -e %s -w %s >& /dev/null" % (tempInputFile, tempOutputFile))
53+
system("blossom5 -e %s -w %s >/dev/null 2>&1" % (tempInputFile, tempOutputFile))
5454

5555
# Now check if output is valid
5656
f = open(tempOutputFile, 'r')

0 commit comments

Comments
 (0)