Hi, I have a configuration file. I wanted to use ConfigObj library to access the configuration file. I have placed the file inside the controller and tried accessing it like:
cfg=ConfigObj("conf.ini")
It didnt read the file. But when i gave it like this:
cfg=ConfObj("/home/deepak/web2py/applications/depyweb/controller/conf.ini")
it worked!..
What is the issue with this?
--

