On Sat, Nov 28, 2009 at 10:46 PM, ccl4r <[email protected]> wrote:

> I'm tryin out the tutorial and am very new to this...I have my
> settings.py as:
>
> DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2',
> 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
> DATABASE_NAME = 'C:\Users\Student\Desktop\mysite'
>

In Python, backslashes in string literals are escape characters.  You either
need to double the backslashes or use forward slashes, which will work fine
in path names, even on Windows.

Karen

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to