在 Google 应用引擎的 django-nonrel 中使用 manage.py 时出现异常 AttributeError 消息
我使用 Python 2.7 和 django-nonrel 在 Google 应用引擎上运行 Django 项目。我正在使用 Google 应用引擎 SDK 1.6 版。我运行python manage.pysyncdb
或python manage.pydeploy
。命令完成后,我收到以下消息:
Exception AttributeError: "'NoneType' object has no attribute 'mkstemp'" in <bound method DatastoreFileStub.__del__ of <google.appengine.api.datastore_file_stub.DatastoreFileStub object at 0x8a2422c>> ignored
为什么会收到此消息?有什么方法可以修复它吗?
I'm using Python 2.7 and django-nonrel for running Django projects on Google app engine. I'm using version 1.6 of the Google app engine SDK. I run python manage.py syncdb
or python manage.py deploy
. After the command completes I get the following message:
Exception AttributeError: "'NoneType' object has no attribute 'mkstemp'" in <bound method DatastoreFileStub.__del__ of <google.appengine.api.datastore_file_stub.DatastoreFileStub object at 0x8a2422c>> ignored
Why do I get this message and is there any way to fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
已经有报道了。
请参阅此内容。
显然,它不会破坏任何东西。
如您所见,答案是:
“别担心,忽略它”
It has already been reported.
See this.
Apparently, it doesn't break anything.
As you can see, the answer is:
"Dont worry, just ignore it"
GAE 1.6.0 也不适合我,1.5.2 适合。
GAE 1.6.0 doesnt work for me too, 1.5.2 does.