diff --git a/src/modules/hwclock/main.py b/src/modules/hwclock/main.py index 54dea7451..bfb3d1df7 100644 --- a/src/modules/hwclock/main.py +++ b/src/modules/hwclock/main.py @@ -5,6 +5,7 @@ # # Copyright 2014 - 2015, Philip Müller # Copyright 2014, Teo Mrnjavac +# 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 @@ -26,13 +27,18 @@ import libcalamares def run(): - """ Set hardware clock """ + """ + Set hardware clock + """ root_mount_point = libcalamares.globalstorage.value("rootMountPoint") try: subprocess.check_call(["hwclock", "--systohc", "--utc"]) except subprocess.CalledProcessError as e: - return "Cannot set hardware clock.", "hwclock terminated with exit code {}.".format(e.returncode) + return ( + "Cannot set hardware clock.", + "hwclock terminated with exit code {}.".format(e.returncode) + ) shutil.copy2("/etc/adjtime", "{!s}/etc/".format(root_mount_point))