Re: Middleware stored locally

2009-10-15 Thread When ideas fail
I have an init.py, is the path the likely problem or is it something else? thanks, Andrew On 15 Oct, 02:07, BenW wrote: > I think every dir on the import path needs and __init__.py > > On Oct 14, 5:10 pm, When ideas fail wrote: > > > If i have a lib folder in my app what is the correct way to

Re: Middleware stored locally

2009-10-14 Thread BenW
I think every dir on the import path needs and __init__.py On Oct 14, 5:10 pm, When ideas fail wrote: > If i have a lib folder in my app what is the correct way to reference > it in settings.py? > > I've tried this > > MIDDLEWARE_CLASSES = ( >     'myapp.lib.django_authopenid.middleware.OpenIDMi

Middleware stored locally

2009-10-14 Thread When ideas fail
If i have a lib folder in my app what is the correct way to reference it in settings.py? I've tried this MIDDLEWARE_CLASSES = ( 'myapp.lib.django_authopenid.middleware.OpenIDMiddleware' # and 'myapp.django_authopenid.middleware.OpenIDMiddleware' ) the file its in is \Apache2.2\myapp\l