Dave Angel wrote:
> The property is called __file__
> 
> So in this case,    filename = settings.__file__

Actually it's an attribute set by Python's import machine. Since the
__file__ attribute may contain a relative path it's a good idea to use
os.path.abspath(__file__).

Christian

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to