Re: Standalone Project using django ORM

2015-11-05 Thread Collin Anderson
Hi, It looks like you stack trace is somehow getting cut off. My guess is it's trying to import something that either doesn't exist or has a syntax error. Collin On Wednesday, October 28, 2015 at 12:39:06 AM UTC+1, ADEWALE ADISA wrote: > > The screen shot is attached. There is no error message

Re: Standalone Project using django ORM

2015-10-27 Thread ADEWALE ADISA
The screen shot is attached. There is no error message but the trace. But the program seem stop at django.setup(). Though it ran smoothly in django 1.50 On Oct 28, 2015 12:27 AM, "Dheerendra Rathor" wrote: > Is this the full stacktrace? Looks like error message is missing in > stacktrace. > > On

Re: Standalone Project using django ORM

2015-10-27 Thread Dheerendra Rathor
Is this the full stacktrace? Looks like error message is missing in stacktrace. On Wed, 28 Oct 2015 at 04:05 ADEWALE ADISA wrote: > Hello; > I have being having issues trying to use django orm in my application. > This issues occur when using django 1.85. The application run perfectly > well on

Standalone Project using django ORM

2015-10-27 Thread ADEWALE ADISA
Hello; I have being having issues trying to use django orm in my application. This issues occur when using django 1.85. The application run perfectly well on django 1.50. Bellow are the snippet : Model.py: from django.db import models class Person(models.Model): name = models.CharField(max_le