mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-30 02:45:37 -04:00
Fixed pep8 whining in module hwclock
Added myself to copyright
This commit is contained in:
parent
65b5d67a08
commit
80b87d712b
1 changed files with 8 additions and 2 deletions
|
@ -5,6 +5,7 @@
|
||||||
#
|
#
|
||||||
# Copyright 2014 - 2015, Philip Müller <philm@manjaro.org>
|
# Copyright 2014 - 2015, Philip Müller <philm@manjaro.org>
|
||||||
# Copyright 2014, Teo Mrnjavac <teo@kde.org>
|
# Copyright 2014, Teo Mrnjavac <teo@kde.org>
|
||||||
|
# Copyright 2017. Alf Gaida <agaida@siduction.org>
|
||||||
#
|
#
|
||||||
# Calamares is free software: you can redistribute it and/or modify
|
# Calamares is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -26,13 +27,18 @@ import libcalamares
|
||||||
|
|
||||||
|
|
||||||
def run():
|
def run():
|
||||||
""" Set hardware clock """
|
"""
|
||||||
|
Set hardware clock
|
||||||
|
"""
|
||||||
|
|
||||||
root_mount_point = libcalamares.globalstorage.value("rootMountPoint")
|
root_mount_point = libcalamares.globalstorage.value("rootMountPoint")
|
||||||
try:
|
try:
|
||||||
subprocess.check_call(["hwclock", "--systohc", "--utc"])
|
subprocess.check_call(["hwclock", "--systohc", "--utc"])
|
||||||
except subprocess.CalledProcessError as e:
|
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))
|
shutil.copy2("/etc/adjtime", "{!s}/etc/".format(root_mount_point))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue