summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-16 08:29:26 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-16 08:29:26 -0400
commit6498e2e6e026bdff2eaac486810bdcfd850c2199 (patch)
treeaa40eb077f1dcee38826939a07655070e7454dc4 /src/lib/Bcfg2/Server
parent4f8e9da062daa9b530d87607d3697c5fe6b2cf32 (diff)
downloadbcfg2-6498e2e6e026bdff2eaac486810bdcfd850c2199.tar.gz
bcfg2-6498e2e6e026bdff2eaac486810bdcfd850c2199.tar.bz2
bcfg2-6498e2e6e026bdff2eaac486810bdcfd850c2199.zip
Core: fixed error message bug
Diffstat (limited to 'src/lib/Bcfg2/Server')
-rw-r--r--src/lib/Bcfg2/Server/Core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Core.py b/src/lib/Bcfg2/Server/Core.py
index 027b4c89c..14a01dc2f 100644
--- a/src/lib/Bcfg2/Server/Core.py
+++ b/src/lib/Bcfg2/Server/Core.py
@@ -551,7 +551,7 @@ class BaseCore(object):
xml_declaration=True)
except:
err = sys.exc_info()[1]
- self.critical_error("Error determining probes for %s" %
+ self.critical_error("Error determining probes for %s: %s" %
(client, err))
@exposed