Fix version output when missing.
[plcapi.git] / PLC / Config.py
index 7d666b3..23b4df2 100644 (file)
@@ -7,6 +7,7 @@
 # Copyright (C) 2004-2006 The Trustees of Princeton University
 #
 # $Id$
+# $URL$
 #
 
 import os
@@ -35,11 +36,11 @@ class Config:
         except:
             # Try myplc directory
             try:
-                execfile(file, self.__dict__)
+                execfile(myplc + os.sep + "plc_config", self.__dict__)
             except:
                 raise PLCAPIError("Could not find plc_config in " + \
                                   file + ", " + \
-                                  myplc + "plc_config")
+                                  myplc + os.sep + "plc_config")
 
 class XMLConfig:
     """
@@ -64,7 +65,7 @@ class XMLConfig:
             except:
                 raise PLCAPIError("Could not find plc_config.xml in " + \
                                   file + ", " + \
-                                  myplc + "plc_config.xml")
+                                  myplc + os.sep + "plc_config.xml")
 
         for (category, variablelist) in cfg.variables().values():
             for variable in variablelist.values():