Re: Python unexpectedly quit

2010-09-24 Thread Axel Bock
maybe I was a little bit out of sleep today :) . tried to get auth.User subclassing working til 4am in the morning ... and what do you mean with "not picky enough"? 2010/9/24 Steve Holden > On 9/24/2010 2:23 PM, Axel Bock wrote: > > Anything wrong here? I must say, the framework for the people

Re: Python unexpectedly quit

2010-09-24 Thread Steve Holden
On 9/24/2010 2:23 PM, Axel Bock wrote: > Anything wrong here? I must say, the framework for the people "with > deadlines" is giving me a *really* hard time so far :) . Maybe you aren't in enough of a hurry? And, by the way, it's *perfectionists* with deadlines. Maybe you aren't being picky enough?

Re: Python unexpectedly quit

2010-09-24 Thread Axel Bock
oh f... thanks. 2010/9/24 Scott Gould > > > def logout(request): > > logout(request) > > Infinite loop, no? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-us...@googlegroups.com. > To u

Re: Python unexpectedly quit

2010-09-24 Thread Scott Gould
> def logout(request): >     logout(request) Infinite loop, no? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+uns

Python unexpectedly quit

2010-09-24 Thread Axel Bock
HI all, another problem here: On my system (MacBook Pro, OS X newest version) Python "unexpectedly" quits when I invoke localhost:8000/logout. The code for that looks like this: #urls.py: urlpatterns += patterns('webflog.flightlog', # (r'^logout/', 'views.logout'), ) #