I would like to move my apps from the root folder of my site to a subfolder (apps.) I tried to match what I saw in the source for the django site, changing my settings.py from:
INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.admin', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'newsite.blog', to INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.admin', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'newsite.apps.blog', and moving the "blog" folder into "apps" however, when I try and do this I get the following errors on runserver: newsite.apps.blog: No module named apps.blog is it possible to do this? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

