From 97d26b3e2fc94edb596e25dcfeeac2bef04afba6 Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Tue, 31 Jan 2012 09:32:23 +0100 Subject: [PATCH] Respect 80 columns --- tuned/profile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tuned/profile.py b/tuned/profile.py index ccc30ab..c6a5c34 100644 --- a/tuned/profile.py +++ b/tuned/profile.py @@ -166,7 +166,9 @@ class Profile(object): return True def load(self): - return self._load_config(self._manager, self._config_file) and self._load_ktuned() and self._apply_sysctl() and self._apply_elevator() and self._call_scripts() + return (self._load_config(self._manager, self._config_file) and + self._load_ktuned() and self._apply_sysctl() and + self._apply_elevator() and self._call_scripts()) def cleanup(self): self._revert_sysctl()