On Sun, Mar 13, 2011 at 7:16 AM, royy <cds.oficia...@gmail.com> wrote: > Hi. > > I'm following the tutotial for my first Django app, in part 3 after > edit the views.py file I'm getting the error. > •Using loader django.template.loaders.filesystem.Loader: >.. > As you can see template loader is missing the letter " t " of > templates >
This normally means you had a string like this: "c:\foo\bar\templates" In a character string, '\t' is shorthand for the tab character. Be very careful when specifying file system locations on windows. Either use raw strings - r'c:\foo\templates' is fine - or use '/' as the separator. Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.