星期五, 10月 22, 2010

Django Short names for ENGINE DeprecationWarning

Django在更新到某版後,跑shell會出現如下訊息:

/usr/lib/python2.5/site-packages/django/db/__init__.py:59: DeprecationWarning: Short names for ENGINE in database configurations are deprecated. Prepend default.ENGINE with 'django.db.backends.'
DeprecationWarning

為了解決它,只要在setting.py裡面更改Engine的名稱即可。

'ENGINE': 'django.db.backends.sqlite3'

之後Short name格式都會取消支援,所以就記得在前面加上
django.db.backends.

沒有留言: