From: erickson Date: Sun, 16 Sep 2007 17:46:02 +0000 (+0000) Subject: passing config context to osrfConnect X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2bcb5d5f95652b516b5db3e5db01637b21c02b16;p=Evergreen.git passing config context to osrfConnect git-svn-id: svn://svn.open-ils.org/ILS/trunk@7795 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- 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()