summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRick Bradshow <bradshaw@mcs.anl.gov>2004-09-29 20:02:09 +0000
committerRick Bradshow <bradshaw@mcs.anl.gov>2004-09-29 20:02:09 +0000
commitc0aa267e8978a8e3ced725e2554daa31a16f4ee8 (patch)
treeb58d713b80fa248f1ded0f787ceffab60d73a3a4
parent56b86ed75c0186d02552c95939e268cd2d995e57 (diff)
downloadbcfg2-c0aa267e8978a8e3ced725e2554daa31a16f4ee8.tar.gz
bcfg2-c0aa267e8978a8e3ced725e2554daa31a16f4ee8.tar.bz2
bcfg2-c0aa267e8978a8e3ced725e2554daa31a16f4ee8.zip
K is a tuple which didn't print right with the extra %s. this is a quick fix.
(Logical change 1.65) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@341 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r--src/lib/Server/Core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Core.py b/src/lib/Server/Core.py
index 930ea6de2..fcd5f7ba9 100644
--- a/src/lib/Server/Core.py
+++ b/src/lib/Server/Core.py
@@ -102,7 +102,7 @@ class Core(object):
try:
self.Bind(entry, metadata)
except KeyError, k:
- syslog(LOG_ERR, "Unable to locate %s %s"%k)
+ syslog(LOG_ERR, "Unable to locate %s"%k)
def Bind(self, entry, metadata):
g = [x for x in self.generators if x.__provides__.get(entry.tag, {}).has_key(entry.attrib['name'])]