Startup error: couldn't load USER_SETTINGS.EDITABLE_SCREEN_NAME
Hi, I'm getting this error upon performing a clean installation of askbot (dev version):
Startup error, couldn't load USER_SETTINGS.EDITABLE_SCREEN_NAME
The backtrace is as follows: Traceback (most recent call last):
File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/core/servers/basehttp.py", line 279, in run self.result = application(self.environ, self.start_response)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/core/servers/basehttp.py", line 651, in call return self.application(environ, start_response)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/core/handlers/wsgi.py", line 230, in call self.load_middleware()
File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/core/handlers/base.py", line 40, in loadmiddleware mod = importmodule(mw_module)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/utils/importlib.py", line 35, in import_module import(name)
File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/middleware/viewlog.py", line 3, in <module> from askbot.views.readers import questions as questionsview
File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/views/init.py", line 4, in <module> from askbot.views import readers
File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/views/readers.py", line 29, in <module> from askbot.forms import *
File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/forms.py", line 430, in <module> class EditUserForm(forms.Form):
File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/forms.py", line 432, in EditUserForm if askbotsettings.EDITABLESCREEN_NAME:
File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/conf/settingswrapper.py", line 46, in getattr return getattr(self._instance, key).value
File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/deps/livesettings/values.py", line 353, in value val = self._value()
File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/deps/livesettings/values.py", line 312, in _value raise SettingNotSet("Startup error, couldn't load %s.%s" %(self.group.key, self.key))
SettingNotSet: ("Startup error, couldn't load USERSETTINGS.EDITABLESCREEN_NAME", None)
Comments