Bug 434945

Summary: iscsiname.py missing '\n' character
Product: [Fedora] Fedora Reporter: James Laska <jlaska>
Component: pykickstartAssignee: Chris Lumens <clumens>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: low Docs Contact:
Priority: low    
Version: rawhideCC: jturner
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2008-02-26 14:59:29 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description James Laska 2008-02-26 14:04:33 UTC
diff --git a/pykickstart/commands/iscsiname.py b/pykickstart/commands/iscsiname.py
index 00a14af..7c96b5a 100644
--- a/pykickstart/commands/iscsiname.py
+++ b/pykickstart/commands/iscsiname.py
@@ -34,7 +34,7 @@ class FC6_IscsiName(KickstartCommand):
 
     def __str__(self):
         if self.iscsiname != "":
-            return "iscsiname %s" % self.iscsiname
+            return "iscsiname %s\n" % self.iscsiname
         else:
             return ""

Comment 1 Chris Lumens 2008-02-26 14:59:29 UTC
Thanks, this will be included in the next build of pykickstart.