Re: 'module' object has no attribute 'instancemethod' error

2010-08-18 Thread Wim Feijen
And I solved the problem as well, a new.pyc file was dangling somewhere in my project root, so that was why new.SomeThing didn't work. Oh, I'm happy now! On 18 aug, 16:13, Wim Feijen wrote: > Nice app Reinout! This does really help in cleaning up! > > Unfortunately, it does not solve this problem

Re: 'module' object has no attribute 'instancemethod' error

2010-08-18 Thread Wim Feijen
Nice app Reinout! This does really help in cleaning up! Unfortunately, it does not solve this problem. But I'll try to dig some deeper. On 11 aug, 13:19, Reinout van Rees wrote: > On 08/10/2010 09:53 PM, WimFeijenwrote: > > > Exception Type: ViewDoesNotExist at / > > Exception Value: Tried book

Re: 'module' object has no attribute 'instancemethod' error

2010-08-11 Thread Reinout van Rees
On 08/10/2010 09:53 PM, Wim Feijen wrote: Exception Type: ViewDoesNotExist at / Exception Value: Tried book in module book.address.views. Error was: 'module' object has no attribute 'instancemethod' It *looks* like you're using 'instancemethod' in that views.py, but that it isn't available in

'module' object has no attribute 'instancemethod' error

2010-08-10 Thread Wim Feijen
Hi, When using reportlab trying to import a file which contains the following line, I get an error. from reportlab.platypus import Paragraph The error says: ViewDoesNotExist at / Tried book in module book.address.views. Error was: 'module' object has no attribute 'instancemethod' The trace is b