What steps will reproduce the problem?
1. deploy src/appengine to SDK or appengine instance
2. go to /config/config and fill the form
3. click submit
What is the expected output? What do you see instead?
Expexted: values from the form should be saved to Datastore under Entity Kind -
AwsAccountDetails
Actual: exception
Traceback (most recent call last):
File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/_webapp25.py", line 703, in __call__
handler.post(*groups)
File "/base/data/home/apps/s~tdb-qa-bot/invalid-do-not-change-see-comments.354221865253270533/handlers/config_handler.py", line 50, in post
account_details = aws_account_details.AwsAccountDetails.get()
TypeError: get() takes exactly 2 arguments (1 given)
What version of the product are you using? On what operating system?
r12, SDK or real appengine instance.
Please provide any additional information below.
The problem is the Model.get() call instead of Query().get()
Original issue reported on code.google.com by
keiw0...@gmail.comon 26 Oct 2011 at 10:04