summaryrefslogtreecommitdiffstats
path: root/pyfirstaidkit/utils/__init__.py
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2008-07-14 15:12:37 +0200
committerJoel Andres Granados <jgranado@redhat.com>2008-07-14 15:13:50 +0200
commita42a5734a0023f2da45f78347f75c2d72364f7b3 (patch)
tree6280bd9cf41c2408b17047865144427b0d2340ca /pyfirstaidkit/utils/__init__.py
parent437a267ddace57e1877e0376fd6ec3aae28ef52b (diff)
These file was missed in the previous format checks.
Diffstat (limited to 'pyfirstaidkit/utils/__init__.py')
-rw-r--r--pyfirstaidkit/utils/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/pyfirstaidkit/utils/__init__.py b/pyfirstaidkit/utils/__init__.py
index 035de46..94e9279 100644
--- a/pyfirstaidkit/utils/__init__.py
+++ b/pyfirstaidkit/utils/__init__.py
@@ -38,8 +38,10 @@ def spawnvch(executable, args, chroot, env = None):
Returns the subprocess.Popen object"""
- return subprocess.Popen(executable = executable, args = args, preexec_fn = chroot_func(chroot), env = env,
- stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
+ return subprocess.Popen(executable = executable, args = args,
+ preexec_fn = chroot_func(chroot), env = env,
+ stdin = subprocess.PIPE, stdout = subprocess.PIPE,
+ stderr = subprocess.PIPE)