The Django tutorial says the following, using a list in the installed_apps. But the default is a tuple, and other sources also say that Django prefers tuples rather than lists in this situation.
My question is: If I follow what the tutorial says, and use a list rather than a tuple, will this cause problems elsewhere in the setup? Or does it not really matter?
I am using virtualenv on PythonAnywhere running Django 1.8 and Python 3.4
What the tutorial says to add to mysite/settings.py:
INSTALLED_APPS = [
'polls.apps.PollsConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]