Getting this error, "Error while importing URLconf 'blogango.urls': list index out of range". The exception stack does not give any cles to what might be wrong. The exception stack is, Traceback: File "C:\Python24\lib\site-packages\django\core\handlers\base.py" in get_response 73. callback, callback_args, callback_kwargs = resolver.resolve(request.path) File "C:\Python24\lib\site-packages\django\core\urlresolvers.py" in resolve 233. sub_match = pattern.resolve(new_path) File "C:\Python24\lib\site-packages\django\core\urlresolvers.py" in resolve 231. for pattern in self.urlconf_module.urlpatterns: File "C:\Python24\lib\site-packages\django\core\urlresolvers.py" in _get_urlconf_module 255. raise ImproperlyConfigured, "Error while importing URLconf %r: %s" % (self.urlconf_name, e)
Exception Type: ImproperlyConfigured at / Exception Value: Error while importing URLconf 'blogango.urls': list index out of range The urls.py is, from django.conf.urls.defaults import * urlpatterns = patterns('', # Example: # (r'^foo/', include('foo.foo.urls')), # Uncomment this for admin: #(r'^admin/', include('django.contrib.admin.urls')), (r'^', include('blogango.urls')), ) Any clues why this is happening? --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---