From 98db0b3f593a5430a50a6b1345af39f76584ef88 Mon Sep 17 00:00:00 2001 From: Philip Date: Sat, 21 Feb 2015 10:26:03 +0100 Subject: [PATCH] [initcpio] add python doc strings --- src/modules/initcpio/main.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/modules/initcpio/main.py b/src/modules/initcpio/main.py index caeb8b078..db46a4ab2 100644 --- a/src/modules/initcpio/main.py +++ b/src/modules/initcpio/main.py @@ -23,17 +23,13 @@ from libcalamares.utils import check_chroot_call def run_mkinitcpio(): - """ - - - """ + """ Runs mkinitcpio with given kernel profile """ kernel = libcalamares.job.configuration['kernel'] check_chroot_call(['mkinitcpio', '-p', kernel]) def run(): - """ - + """ Calls routine :return: """