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
1=== modified file 'utah/process.py'
2--- utah/process.py 2013-06-03 22:20:16 +0000
3+++ utah/process.py 2013-06-14 03:55:32 +0000
4@@ -210,9 +210,9 @@
5 if pid == 0:
6 # setup stdout/stderr
7 os.close(stdout_r)
8- os.dup2(stdout_w, sys.stdout.fileno())
9+ os.dup2(stdout_w, 1)
10 os.close(stderr_r)
11- os.dup2(stderr_w, sys.stderr.fileno())
12+ os.dup2(stderr_w, 2)
13
14 if cwd:
15 os.chdir(cwd)

Subscribers

People subscribed via source and target branches

to all changes: