diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 22:29:16 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 22:29:16 +0100 |
commit | aab365f4bf3e5fa1d1a52f4a625ea1b3700fb35e (patch) | |
tree | 6b75f89dff0c8e19e890d2b91e5915154c3500dd | |
parent | 9a2daeabe5c31f388a3b64740adb75fafcaf48a2 (diff) | |
download | sos-aab365f4bf3e5fa1d1a52f4a625ea1b3700fb35e.tar.gz |
[apt] list style fixes
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/apt.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sos/plugins/apt.py b/sos/plugins/apt.py index c856e52e..f7c60e2f 100644 --- a/sos/plugins/apt.py +++ b/sos/plugins/apt.py @@ -23,7 +23,9 @@ class Apt(Plugin, DebianPlugin, UbuntuPlugin): plugin_name = 'apt' def setup(self): - self.add_copy_specs(["/etc/apt", "/var/log/apt"]) + self.add_copy_specs([ + "/etc/apt", "/var/log/apt" + ]) self.add_cmd_outputs([ "apt-get check", |