From 2bcb5d5f95652b516b5db3e5db01637b21c02b16 Mon Sep 17 00:00:00 2001 From: erickson Date: Sun, 16 Sep 2007 17:46:02 +0000 Subject: [PATCH] passing config context to osrfConnect git-svn-id: svn://svn.open-ils.org/ILS/trunk@7795 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/python/oils/system.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/python/oils/system.py b/Open-ILS/src/python/oils/system.py index b010db2ecc..5f587afdc5 100644 --- a/Open-ILS/src/python/oils/system.py +++ b/Open-ILS/src/python/oils/system.py @@ -18,9 +18,9 @@ from osrf.system import osrfConnect from oils.utils.idl import oilsParseIDL from oils.utils.csedit import oilsLoadCSEditor -def oilsConnect(config): +def oilsConnect(config, configContext): """Connects to the opensrf network, parses the IDL file, and loads the CSEditor""" osrfLogInfo("oilsConnect(): connecting with config %s" % config) - osrfConnect(config) + osrfConnect(config, configContext) oilsParseIDL() oilsLoadCSEditor() -- 2.11.0