diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 22:32:51 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 22:32:51 +0100 |
commit | 060a60a83777423c63e237a8109a4276f30aea1b (patch) | |
tree | 364720911219e59261784cea13ed03a44d3b06fa | |
parent | 7f444ff70d9221a1604df82bbfcbb2fc0049ee9c (diff) | |
download | sos-060a60a83777423c63e237a8109a4276f30aea1b.tar.gz |
[i18n] list style fixes
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/i18n.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/plugins/i18n.py b/sos/plugins/i18n.py index dd2b36a3..90a20981 100644 --- a/sos/plugins/i18n.py +++ b/sos/plugins/i18n.py @@ -21,7 +21,10 @@ class I18n(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): plugin_name = 'i18n' def setup(self): - self.add_copy_specs(["/etc/X11/xinit/xinput.d/*", "/etc/locale.conf"]) + self.add_copy_specs([ + "/etc/X11/xinit/xinput.d/*", + "/etc/locale.conf" + ]) self.add_cmd_output("locale") # vim: et ts=4 sw=4 |