Re: i'm tired

2008-02-09 Thread Darren Redmond
try placing the word python in front of the line: python django-admin.py startproject mysite newbiedoobiedoo wrote: > I did exactly what you said here. > The very first instruction on the tutorial failed: > django-admin.py startproject mysite > > The error was > "bash: django-admin.py: command

Re: confused about licensing

2006-05-30 Thread Darren Redmond
Nicola, Thanks for the prompt response. Let's hope the explanation keeps our legal team happy, otherwise I need another database. cheers Darren tekNico wrote: >> I have been using django with postgres on windows while builiding my >> application for the last month or so. >> I have just spend

confused about licensing

2006-05-30 Thread Darren Redmond
hi all, I have been using django with postgres on windows while builiding my application for the last month or so. I have just spend the day putting the app onto a linux box. It has just been pointed out to me by one of my colleagues, while building psycopg on the linux box, that it is a Gnu P

Re: 'str' object has no attribute 'write' Exception

2006-05-25 Thread Darren Redmond
Mary, In your code you have assigned output to be a string. So output as a string would cease to have the operation write on it. so change the last two lines of your code to be tempOutput = ', '.join([m.menu_text for m in latest_menu_list]) output.write(tempOutput) I hope that this helps che