Show More
@@ -65,7 +65,8 b' class Command(object):' | |||||
65 | p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE, cwd=self.cwd) |
|
65 | p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE, cwd=self.cwd) | |
66 | stdout, stderr = p.communicate() |
|
66 | stdout, stderr = p.communicate() | |
67 | if DEBUG: |
|
67 | if DEBUG: | |
68 |
print stdout, |
|
68 | print 'stdout:', repr(stdout) | |
|
69 | print 'stderr:', repr(stderr) | |||
69 | return stdout, stderr |
|
70 | return stdout, stderr | |
70 |
|
71 | |||
71 |
|
72 |
General Comments 0
You need to be logged in to leave comments.
Login now