diff options
author | Paul Nasrat <pnasrat@redhat.com> | 2005-08-17 14:52:38 +0000 |
---|---|---|
committer | Paul Nasrat <pnasrat@redhat.com> | 2005-08-17 14:52:38 +0000 |
commit | 36cb88ae10fec0f6fb79440e4fa80d69e2838fd0 (patch) | |
tree | da6b364259b381a6be6925e4d0c6127fc0ccc72b | |
parent | 4e253c4462218cedcff727d0e551479c690713ab (diff) | |
download | anaconda-36cb88ae10fec0f6fb79440e4fa80d69e2838fd0.tar.gz anaconda-36cb88ae10fec0f6fb79440e4fa80d69e2838fd0.tar.xz anaconda-36cb88ae10fec0f6fb79440e4fa80d69e2838fd0.zip |
Fix syntax
-rw-r--r-- | kickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py index 8a2dd7cdc..16725e19e 100644 --- a/kickstart.py +++ b/kickstart.py @@ -777,7 +777,7 @@ class Kickstart(BaseInstallClass): if len(args) > 1: for arg in args[1:]: - elif arg == "--excludedocs": + if arg == "--excludedocs": id.excludeDocs = 1 elif arg == "--ignoremissing": self.handleMissing = KS_MISSING_IGNORE |