I'm new to django, and still figuring out a lot of things.

When I run the syncdb command of manage.py, after some of the steps have been completed, I get this:

AttributeError: "'NoneType' object has no attribute 'mkstemp'" in > ignored

how do I solve this? Is there a version of django nonrel that solves this?

link|improve this question

feedback

2 Answers

"gagan" posted the reason and solution right here.

I changed my settings.py little bit to resolve this. I added following to settings.py,

DATABASES['native'] = { 
        'ENGINE': 'djangoappengine.db', 
        'HIGH_REPLICATION': True, 
        'DEV_APPSERVER_OPTIONS': { 
            'high_replication' : True, 
            'use_sqlite': True, 
            } 
    } 

and removed this line,

DATABASES['native'] = DATABASES['default'] 
link|improve this answer
feedback

I think it should be the allbuttonspressed version. I tried it in march and the exmples from waldemar worked (but I chose plain gae for my project).

link|improve this answer
Yes, that's what I'm using, together with their dbindexer etc... – sys.stderr Sep 15 '11 at 13:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.