From 256a09c083073f783eae2149c178cf45448ea38d Mon Sep 17 00:00:00 2001 From: Louis Bouchard Date: Fri, 12 Sep 2014 15:29:56 +0200 Subject: Fix variable naming according to comment Signed-off-by: Louis Bouchard Signed-off-by: Adam Stokes --- sos/plugins/apt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sos/plugins/apt.py b/sos/plugins/apt.py index 84faf605..4fa76762 100644 --- a/sos/plugins/apt.py +++ b/sos/plugins/apt.py @@ -28,7 +28,7 @@ class Apt(Plugin, DebianPlugin, UbuntuPlugin): "/etc/apt", "/var/log/apt" ]) - shell_cmd = "sh -c '%s'" % ( + apt_cache_policy_ext = "sh -c '%s'" % ( "dpkg -l | grep ^ii |" "cut -d \" \" -f3 |" "xargs apt-cache policy" @@ -38,7 +38,7 @@ class Apt(Plugin, DebianPlugin, UbuntuPlugin): "apt-config dump", "apt-cache stats", "apt-cache policy", - shell_cmd + apt_cache_policy_ext ]) # vim: et ts=4 sw=4 -- cgit