summaryrefslogtreecommitdiffstats
path: root/silo.py
diff options
context:
space:
mode:
authorjakub <jakub>1999-11-11 16:27:07 +0000
committerjakub <jakub>1999-11-11 16:27:07 +0000
commite181e4a500e66ef39f560888344d228664618949 (patch)
treed6669722d78d8be1934f9fe95227cdd3ffc37d53 /silo.py
parent238d00913943c382612cf6205d236550ccc6edc5 (diff)
downloadanaconda-e181e4a500e66ef39f560888344d228664618949.tar.gz
anaconda-e181e4a500e66ef39f560888344d228664618949.tar.xz
anaconda-e181e4a500e66ef39f560888344d228664618949.zip
Surround append= argument with quotes.
Diffstat (limited to 'silo.py')
-rw-r--r--silo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/silo.py b/silo.py
index 2e124a037..4a5e40e37 100644
--- a/silo.py
+++ b/silo.py
@@ -299,7 +299,7 @@ class SiloInstall:
sl.addEntry("initrd", initrdFile)
if self.todo.liloAppend:
- sl.addEntry("append", self.todo.liloAppend)
+ sl.addEntry('append', '"%s"' % self.todo.liloAppend)
silo.addImage ("image", kernelFile, sl)