Skip to content

Commit

Permalink
Merge branch 'master' into jagerrit/top_multi
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits authored Feb 8, 2019
2 parents d2b65fd + c911042 commit d3787fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/repeat.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
error = 0
expected = None

for counter in xrange(1, count + 1):
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
for counter in range(1, count + 1):
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True)
out, err = p.communicate('')
out += err or ''
if expected is None:
Expand Down

0 comments on commit d3787fa

Please sign in to comment.