summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/Client/Proxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Client/Proxy.py b/src/lib/Client/Proxy.py
index 521d7110c..17a1b0ff2 100644
--- a/src/lib/Client/Proxy.py
+++ b/src/lib/Client/Proxy.py
@@ -128,12 +128,12 @@ class SafeProxy:
try:
_components = _cfile._sections['components']
except KeyError:
- print "cobalt.conf doesn't contain a valid components section"
+ print "%s doesn't contain a valid components section" % (_cfpath)
raise SystemExit, 1
try:
_authinfo = ('root', _cfile.get('communication', 'password'))
except KeyError:
- print "cobalt.conf doesn't contain a valid communication setup"
+ print "%s doesn't contain a valid communication setup" % (_cfpath)
raise SystemExit, 1
_retries = 4