diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2012-12-06 22:28:51 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2012-12-06 22:28:51 +0000 |
commit | f30f0cf83d3056caaaaacd35154ceceb4530a5e8 (patch) | |
tree | b7605c690c33cb4b0cae1720279caba133971e7e | |
parent | caf23c1cd920095810365e2dcdf15edacb027516 (diff) | |
download | sos-f30f0cf83d3056caaaaacd35154ceceb4530a5e8.tar.gz |
Fix typo in i18n module
-rw-r--r-- | sos/plugins/i18n.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/i18n.py b/sos/plugins/i18n.py index d323a970..f53f411a 100644 --- a/sos/plugins/i18n.py +++ b/sos/plugins/i18n.py @@ -18,5 +18,5 @@ class i18n(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): """i18n related information """ def setup(self): - self.addCopySpec(["/etc/X11/xinit/xinput.d/*", "/etc/locale.conf"]) + self.addCopySpecs(["/etc/X11/xinit/xinput.d/*", "/etc/locale.conf"]) self.collectExtOutput("/usr/bin/locale") |