Fixed some typos

This commit is contained in:
vpfautz
2017-02-26 19:15:33 +01:00
parent 575214e286
commit 82ed7f8716
10 changed files with 11 additions and 11 deletions

View File

@@ -245,7 +245,7 @@ class Subprocess:
p = subprocess.Popen(command,
stdout=subprocess.PIPE, stderr=stderr,
cwd=working_dir, universal_newlines=True, env=env)
# communicate returns a tuple with the file obect for the child's
# communicate returns a tuple with the file object for the child's
# output.
self.output = p.communicate()[0]
self._return_code = p.returncode