From 536054b0cd2e9e1d1cbb8fe61c3a624fd03b3491 Mon Sep 17 00:00:00 2001 From: Alf Gaida Date: Wed, 29 Mar 2017 16:44:53 +0200 Subject: [PATCH] Fixed pep8 whining in modulde initramfs added myself to copyright --- src/modules/initramfs/main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/modules/initramfs/main.py b/src/modules/initramfs/main.py index 58fb296b9..947c034ea 100644 --- a/src/modules/initramfs/main.py +++ b/src/modules/initramfs/main.py @@ -4,6 +4,7 @@ # === This file is part of Calamares - === # # Copyright 2014, Philip Müller +# Copyright 2017, Alf Gaida # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -29,4 +30,7 @@ def run(): return_code = target_env_call(["update-initramfs", "-k", "all", "-u"]) if return_code != 0: - return "Failed to run update-initramfs on the target", "The exit code was {}".format(return_code) + return ( + "Failed to run update-initramfs on the target", + "The exit code was {}".format(return_code) + )