summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2005-10-24 21:22:15 +0000
committerNarayan Desai <desai@mcs.anl.gov>2005-10-24 21:22:15 +0000
commit7a1c232c561d1e5588d48c82efd4bdf566965b84 (patch)
treebb04c38f0e785ecea7565fda70a158fe2edc506c /src
parent72f3414dca7166181058f6dea86ee3c2e6010b64 (diff)
downloadbcfg2-7a1c232c561d1e5588d48c82efd4bdf566965b84.tar.gz
bcfg2-7a1c232c561d1e5588d48c82efd4bdf566965b84.tar.bz2
bcfg2-7a1c232c561d1e5588d48c82efd4bdf566965b84.zip
switch to new-style cobalt code
(Logical change 1.343) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1418 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/lib/Client/XMLRPCComm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Client/XMLRPCComm.py b/src/lib/Client/XMLRPCComm.py
index 83e99795b..3485e7fc2 100644
--- a/src/lib/Client/XMLRPCComm.py
+++ b/src/lib/Client/XMLRPCComm.py
@@ -16,7 +16,7 @@ class comm_lib(object):
def __init__(self):
self.cf = ConfigParser()
self.cf.read('/etc/bcfg2.conf')
- location = self.cf.get("communication", "url")
+ location = self.cf.get("components", "bcfg2")
self.proxy = ServerProxy(location, SSL_Transport())
self.user = 'root'
self.password = self.cf.get("communication", "password")