aboutsummaryrefslogtreecommitdiff
path: root/linaro_image_tools/media_create/chroot_utils.py
diff options
context:
space:
mode:
authorDanilo Segan <danilo@canonical.com>2012-06-13 16:11:28 +0200
committerDanilo Segan <danilo@canonical.com>2012-06-13 16:11:28 +0200
commitea12488efad448b87098c35472a8d64c5eea3bb9 (patch)
tree6939ca719bc0f783e274da07f64d3d4ca6b804d9 /linaro_image_tools/media_create/chroot_utils.py
parent94c752f539b7ac7a81b39a7ba6d8a039cc7fc69d (diff)
Continue with PEP-8 fixes.
Diffstat (limited to 'linaro_image_tools/media_create/chroot_utils.py')
-rw-r--r--linaro_image_tools/media_create/chroot_utils.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/linaro_image_tools/media_create/chroot_utils.py b/linaro_image_tools/media_create/chroot_utils.py
index bb77054..b3fb441 100644
--- a/linaro_image_tools/media_create/chroot_utils.py
+++ b/linaro_image_tools/media_create/chroot_utils.py
@@ -3,7 +3,7 @@
# Author: Guilherme Salgado <guilherme.salgado@linaro.org>
#
# This file is part of Linaro Image Tools.
-#
+#
# Linaro Image Tools is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
@@ -45,7 +45,8 @@ def prepare_chroot(chroot_dir, tmp_dir):
def install_hwpacks(
- chroot_dir, tmp_dir, tools_dir, hwpack_force_yes, verified_files, *hwpack_files):
+ chroot_dir, tmp_dir, tools_dir, hwpack_force_yes, verified_files,
+ *hwpack_files):
"""Install the given hwpacks onto the given chroot."""
prepare_chroot(chroot_dir, tmp_dir)
@@ -78,7 +79,8 @@ def install_hwpacks(
hwpack_verified = False
if os.path.basename(hwpack_file) in verified_files:
hwpack_verified = True
- install_hwpack(chroot_dir, hwpack_file, hwpack_force_yes or hwpack_verified)
+ install_hwpack(chroot_dir, hwpack_file,
+ hwpack_force_yes or hwpack_verified)
finally:
run_local_atexit_funcs()