Re: [Tutor] module not found problem

2009-09-22 Thread Parag Shah
Hi Luke, Kent, Thanks the solution worked. -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz On 9/23/09, Luke Paireepinart wrote: > Yeah looks like Kent had the same recommendation.I would suggest you don't > import from draft, because they will probably cha

Re: [Tutor] module not found problem

2009-09-22 Thread Parag Shah
est as PapeRequest As you suggested I tried this, but it too fails: >>> from openid.extensions.pape5 import Request as PapeRequest However, doing this succeeds: >>> from openid.extensions.draft.pape5 import Request as PapeRequest -- Thanks & Regards Parag Shah http://blo

[Tutor] module not found problem

2009-09-22 Thread Parag Shah
ent call last): File "", line 1, in ImportError: No module named pape So Python is able to execute the first import which just imports 'pape', but fails on the second import which imports 'PageRequest' from 'pape'. Can someone point out what the p