First time here? Check out the FAQ!

Revision history  [back]

When I do:

python manage.py shell
from askbot import models
user = User.objects.get(id=1)
user.post_question(title = 't', tags='tag', body_text = 'body')

It worked (http://fashionsteal.com/question/2/t) despite there was a warning:

lib/python2.6/site-packages/Coffin-0.3.4-py2.6.egg/coffin/common.py:49: UserWarning: Cannot translate loader: askbot.skins.loaders.load_template_source
  warnings.warn('Cannot translate loader: %s' % loader)
<Question: t>

Now I am really confused...