Merge lp:~doanac/utah/bug1190775 into lp:utah

Proposed by Andy Doan
Status: Merged
Merged at revision: 939
Proposed branch: lp:~doanac/utah/bug1190775
Merge into: lp:utah
Diff against target: 15 lines (+2/-2)
1 file modified
utah/process.py (+2/-2)
To merge this branch: bzr merge lp:~doanac/utah/bug1190775
Reviewer Review Type Date Requested Status
UTAH Dev Pending
Review via email: mp+169333@code.launchpad.net

Description of the change

fixed a regression. once approved for trunk, i'll cherry-pick it to 0.12 and do a quick release for paul

To post a comment you must log in.
Revision history for this message
Max Brustkern (nuclearbob) wrote :

Seems reasonable to me, assuming it tests out fine.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'utah/process.py'
--- utah/process.py 2013-06-03 22:20:16 +0000
+++ utah/process.py 2013-06-14 03:55:32 +0000
@@ -210,9 +210,9 @@
210 if pid == 0:210 if pid == 0:
211 # setup stdout/stderr211 # setup stdout/stderr
212 os.close(stdout_r)212 os.close(stdout_r)
213 os.dup2(stdout_w, sys.stdout.fileno())213 os.dup2(stdout_w, 1)
214 os.close(stderr_r)214 os.close(stderr_r)
215 os.dup2(stderr_w, sys.stderr.fileno())215 os.dup2(stderr_w, 2)
216216
217 if cwd:217 if cwd:
218 os.chdir(cwd)218 os.chdir(cwd)

Subscribers

People subscribed via source and target branches

to all changes: