summaryrefslogtreecommitdiffstats
path: root/src/lib/Client/XMLRPCComm.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Client/XMLRPCComm.py')
-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")