fixed: encodes boolean and double type values for the requests
[plcapi.git] / PLC / Config.py
index bfe80af..c1dbe70 100644 (file)
@@ -6,8 +6,6 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2004-2006 The Trustees of Princeton University
 #
-# $Id: Config.py,v 1.1 2006/09/06 15:36:06 mlhuang Exp $
-#
 
 import os
 import sys
@@ -35,7 +33,7 @@ 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 + ", " + \