~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to test_on_merge.py

  • Committer: Stuart Bishop
  • Date: 2006-04-03 03:21:34 UTC
  • mto: This revision was merged to the branch mainline in revision 3383.
  • Revision ID: stuart.bishop@canonical.com-20060403032134-f9191d85df4ccd3e
Don't insert random spaces in test_on_merge.py output

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
 
167
167
        if proc.stdout in rlist:
168
168
            chunk = os.read(proc.stdout.fileno(), 1024)
169
 
            print chunk,
 
169
            sys.stdout.write(chunk)
170
170
            if chunk == "":
171
171
                open_readers.remove(proc.stdout)
172
172