You error is in urls.py
You have; *include('mysite/polls/urls')),*
you should have; *include('mysite.polls.urls')),*The path is written python module style (with dots) rather than directory style (with slashes) Dougal --- Dougal Matthews - @d0ugal http://www.dougalmatthews.com/ 2009/4/2 Loewe, Rosemarie <[email protected]> > Hello django-user Daniel Roseman, > > many thanks for your quick response. In the attachment are > - and the error messages displayed in Browser (Firefox). > - the django project, what I have generated like shown in Django Tutorial > (until part 3) > > I hope you can do something with this information. > > Best regards > R. Loewe (rorocam) > > ________________________________ > > Von: [email protected] im Auftrag von Daniel Roseman > Gesendet: Do 02.04.2009 12:53 > An: Django users > Betreff: Re: Django Tutorial, Part 3 > > > > > On Apr 2, 8:35 am, rorocam <[email protected]> wrote: > > Hello ..., > > > > I have problems with the "Decoupling the URLconfs". I did, as Django > > Tutorial (Part 3) shows me, but it does not work, the browser shows > > following error: > > > > > ImportError at /polls/ > > > Import by filename is not supported. > > > > What is wrong with my application? I have installed Python 2.6 and > > Django 1.0.2 at Windows XP. > > > > Thanks, for giving me an answer. > > > > Best regards > > Rosemarie Loewe > > You haven't given nearly enough information for us to solve this > problem. What is the full traceback? What is the code where the > problem occurs? > -- > DR. > > > > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

