Rephrase the caveats on image creation doc section
[snf-image-creator] / image_creator / os_type / ubuntu.py
index f992981..6a048e5 100644 (file)
@@ -35,15 +35,15 @@ from image_creator.os_type.linux import Linux, sysprep
 
 
 class Ubuntu(Linux):
-    def __init__(self, rootdev, ghandler):
-        super(Ubuntu, self).__init__(rootdev, ghandler)
+    def __init__(self, rootdev, ghandler, output):
+        super(Ubuntu, self).__init__(rootdev, ghandler, output)
 
         apps = self.g.inspect_list_applications(self.root)
         for app in apps:
             if app['app_name'] == 'kubuntu-desktop':
                 self.meta['OS'] = 'kubuntu'
-                self.meta['DESCRIPTION'] = \
-                        self.meta['DESCRIPTION'].replace('Ubuntu', 'Kubuntu')
+                descr = self.meta['DESCRIPTION'].replace('Ubuntu', 'Kubuntu')
+                self.meta['DESCRIPTION'] = descr
                 break
 
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :