Django Error - AttributeError: 'Settings' object has no attribute 'LOCALE_PATHS'

Posted by Randy Simon on Stack Overflow See other posts from Stack Overflow or by Randy Simon
Published on 2010-03-24T07:50:30Z Indexed on 2010/03/24 7:53 UTC
Read the original article Hit count: 562

Filed under:
|

I am trying to learn django by following along with this tutorial. I am using django version 1.1.1

I run

django-admin.py startproject mysite

and it creates the files it should. Then I try to start the server by running

python manage.py runserver

but here is where I get the following error.

Traceback (most recent call last):
  File "manage.py", line 11, in <module>
    execute_manager(settings)
  File "/Library/Python/2.6/site-packages/django/core/management/__init__.py", line 362, in execute_manager
    utility.execute()
  File "/Library/Python/2.6/site-packages/django/core/management/__init__.py", line 303, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/Library/Python/2.6/site-packages/django/core/management/base.py", line 195, in run_from_argv
    self.execute(*args, **options.__dict__)
  File "/Library/Python/2.6/site-packages/django/core/management/base.py", line 213, in execute
    translation.activate('en-us')
  File "/Library/Python/2.6/site-packages/django/utils/translation/__init__.py", line 73, in activate
    return real_activate(language)
  File "/Library/Python/2.6/site-packages/django/utils/translation/__init__.py", line 43, in delayed_loader
    return g['real_%s' % caller](*args, **kwargs)
  File "/Library/Python/2.6/site-packages/django/utils/translation/trans_real.py", line 205, in activate
    _active[currentThread()] = translation(language)
  File "/Library/Python/2.6/site-packages/django/utils/translation/trans_real.py", line 194, in translation
    default_translation = _fetch(settings.LANGUAGE_CODE)
  File "/Library/Python/2.6/site-packages/django/utils/translation/trans_real.py", line 172, in _fetch
    for localepath in settings.LOCALE_PATHS:
  File "/Library/Python/2.6/site-packages/django/utils/functional.py", line 273, in __getattr__
    return getattr(self._wrapped, name)
AttributeError: 'Settings' object has no attribute 'LOCALE_PATHS'

Now, I can add a LOCAL_PATH atribute set to an empty string to my settings.py file but then it just complains about another setting and so on. What am I missing here?

© Stack Overflow or respective owner

Related posts about django

Related posts about python