summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-08-03 11:15:00 -0400
committerChris Lumens <clumens@redhat.com>2012-08-03 11:15:00 -0400
commit6f147faeae478e2ebfdd16db3b58ace97912ead5 (patch)
treec2ee80b6d836b10caae2dd2b406ccee58ca9067c
parent0e6c44733c50414a6989cb18fd85b56d6a9110e5 (diff)
downloadanaconda-6f147faeae478e2ebfdd16db3b58ace97912ead5.tar.gz
anaconda-6f147faeae478e2ebfdd16db3b58ace97912ead5.tar.xz
anaconda-6f147faeae478e2ebfdd16db3b58ace97912ead5.zip
Fix a typo in iutil.py caused by the big merge commit.
-rw-r--r--pyanaconda/iutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/iutil.py b/pyanaconda/iutil.py
index 9ffee0b84..00fcb6ad7 100644
--- a/pyanaconda/iutil.py
+++ b/pyanaconda/iutil.py
@@ -202,7 +202,7 @@ def execWithRedirect(command, argv, stdin = None, stdout = None,
# @param root The directory to chroot to before running command.
# @param fatal Boolean to determine if non-zero exit is fatal.
# @return The output of command from stdout.
-def execWithCapture(command, argv, stdin = None, stderr = None, root='/'):
+def execWithCapture(command, argv, stdin = None, stderr = None, root='/',
fatal = False):
if flags.testing:
log.info("not running command because we're testing: %s %s"