Index: /branches/eam_branches/ipp-20121219/ippToPsps/jython/config.py
===================================================================
--- /branches/eam_branches/ipp-20121219/ippToPsps/jython/config.py	(revision 34970)
+++ /branches/eam_branches/ipp-20121219/ippToPsps/jython/config.py	(revision 34971)
@@ -19,9 +19,16 @@
     Basically reads the entire config and stores values to class variables
     '''
-    def __init__(self, programName, name):
+    def __init__(self, programName, name, configDir):
 
         self.programName = programName
         self.name = name
-        self.settingsPath = "../config/settings.xml" # TODO
+        self.configDir = configDir
+
+        # self.configdir is set in ipptopsps.jy on init based on env(IPPTOPSPS_DATA)
+        if self.configDir is None:
+          self.settingsPath = "../config/settings.xml" # TODO
+        else:
+          self.settingsPath = self.configDir + "settings.xml"
+
         self.logger = None
 
