I am trying to remove a list item of type long from a list of db.ListProperty (long).
class UploadHandler(blobstore_handlers.BlobstoreUploadHandler): def post(self): bla def _removeLotFromAuction(self,lot): auction = Auction.get_by_id(long(lot.auctionID)) logging.info(len(auction.lots))
Then I refer to the same model (auction) later in the same request request, but Model.put () does not work, because it returns, because logging.info (len (auction.lots) returns 1
source share