diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2015-03-17 14:06:50 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2015-03-17 14:06:50 +0000 |
commit | c54cbebd7247f0caf5392fee6a68bdd88a796da9 (patch) | |
tree | 5c2a109e066470f225d8b2c0fc7503941186d269 | |
parent | 79d90ff649f89f784bdf41769f2326faa11cb7b0 (diff) | |
download | sos-c54cbebd7247f0caf5392fee6a68bdd88a796da9.tar.gz |
[networking] fix pep8 complaints
Had fixed this in the working tree but not added it to the commit;
need to improve the hook scripts to check for that and complain.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/networking.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index ae5ea717..369d8942 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -89,7 +89,7 @@ class Networking(Plugin): self.add_forbidden_path("/proc/net/rpc/*/channel") self.add_forbidden_path("/proc/net/rpc/*/flush") - self.add_cmd_output("ip -o addr", root_symlink = "ip_addr") + self.add_cmd_output("ip -o addr", root_symlink="ip_addr") self.add_cmd_output("route -n", root_symlink="route") self.collect_iptable("filter") self.collect_iptable("nat") |