diff options
author | navid <navid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-11-26 12:55:46 +0000 |
---|---|---|
committer | navid <navid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-11-26 12:55:46 +0000 |
commit | f58fd94fb492175c4334ecd8fbc0a9a5aa3abc4b (patch) | |
tree | 6c2a3480dd044dadc75acbbbd129e7aec094de5a | |
parent | fb219d820d5bde2845b1b106104350ca944d5987 (diff) | |
download | sos-f58fd94fb492175c4334ecd8fbc0a9a5aa3abc4b.tar.gz |
typo, %s but no variable specified
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@461 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rw-r--r-- | src/lib/sos/plugins/kernel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/sos/plugins/kernel.py b/src/lib/sos/plugins/kernel.py index d7f3e833..4fb0a864 100644 --- a/src/lib/sos/plugins/kernel.py +++ b/src/lib/sos/plugins/kernel.py @@ -92,7 +92,7 @@ class kernel(sos.plugintools.PluginBase): sys_srcver = infd.read().strip("\n") infd.close() if modinfo_srcver != sys_srcver: - self.addDiagnose("Loaded module %s differs from the one present on the file-system") + self.addDiagnose("loaded module %s differs from the one present on the file-system" % modname) # this would be a good moment to check the module's signature # but at the moment there's no easy way to do that outside of |