Blob Blame History Raw
# HG changeset patch
# User Cole Robinson <crobinso@redhat.com>
# Date 1233003236 18000
# Node ID 5ea2332d65ff0a0e54d3b51cc88d450c4a498b10
# Parent  689089a334811719a5d643424a7aaf1e1bc54b04
Argh, unbreak URL install with extra kernel arguments.

diff -r 689089a33481 -r 5ea2332d65ff virtinst/OSDistro.py
--- a/virtinst/OSDistro.py	Mon Jan 26 14:29:40 2009 -0500
+++ b/virtinst/OSDistro.py	Mon Jan 26 15:53:56 2009 -0500
@@ -174,7 +174,8 @@
 
         return False
 
-    def _kernelFetchHelper(self, fetcher, guest, progresscb, kernelpath, initrdpath):
+    def _kernelFetchHelper(self, fetcher, guest, progresscb, kernelpath,
+                           initrdpath):
         # Simple helper for fetching kernel + initrd and performing
         # cleanup if neccessary
         kernel = fetcher.acquireFile(kernelpath, progresscb)
@@ -184,7 +185,7 @@
             args += "method=" + fetcher.location
 
         if guest.extraargs:
-            args += guest.extraargs
+            args += " " + guest.extraargs
 
         try:
             initrd = fetcher.acquireFile(initrdpath, progresscb)