From b39f630954627f628ecfe6fdbdc3a48707f35fc1 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Tue, 24 Mar 2009 14:07:17 -0500 Subject: Put line breaks in between crypttab entries. (#491938) --- storage/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'storage/__init__.py') diff --git a/storage/__init__.py b/storage/__init__.py index e9d0b7874..fd9f28996 100644 --- a/storage/__init__.py +++ b/storage/__init__.py @@ -1109,10 +1109,10 @@ class CryptTab(object): crypttab = "" for name in self.mappings: entry = self[name] - crypttab += "%s UUID=%s %s %s" % (name, - entry['device'].format.uuid, - entry['keyfile'], - entry['options']) + crypttab += "%s UUID=%s %s %s\n" % (name, + entry['device'].format.uuid, + entry['keyfile'], + entry['options']) return crypttab def __getitem__(self, key): -- cgit