Re: DatabaseError: (1146, "Table 'test_XXX.django_content_type' doesn't exist")

2010-10-28 Thread Suraj Jacob
alter the test_* tables, they obviously wont be there, because theyre created only while running the tests... The fix mite be as simple as putting the test_ tables in the skip set. - Suraj Jacob On Thu, Oct 28, 2010 at 14:56, girish shabadimath wrote: > > Hi all, > > im re-sending this m

Re: Data error

2010-10-28 Thread Suraj Jacob
means your object cannot be converted into string. You have to either provide a __unicode__ or __str__ for your model, or pick a particular field that you are trying to coerce with the rest of the string On Thu, Oct 28, 2010 at 15:15, Hussain Deikna wrote: > Hi, I am newbe in django and I have g

Re: 'str' object has no attribute 'resolve' Exception Location: C:\Python25\Lib\site-packages\django\core\urlresolvers.py in resolve,

2010-10-28 Thread Suraj Jacob
change it from (r"wap/di/sub",current_datetime) to (r'^wap/di/sub','current_datetime') On Thu, Oct 28, 2010 at 15:52, sami nathan wrote: > (r"^wap/di/sub",current_datetime) > -- You received this message because you are subscribed to the Google Groups "Django users" group. To po