From cc7dc152d226bf04ecd048a8310fcd2d5c0225d7 Mon Sep 17 00:00:00 2001 From: Walter Poupore Date: Thu, 4 Feb 2016 14:51:10 -0800 Subject: [PATCH] Fixes transactional_retry region tag --- datastore/api/snippets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datastore/api/snippets.py b/datastore/api/snippets.py index e3239a72641..8bb2c306d6e 100644 --- a/datastore/api/snippets.py +++ b/datastore/api/snippets.py @@ -663,7 +663,7 @@ def transfer_funds(client, from_key, to_key, amount): transfer_funds(client, account1.key, account2.key, 50) except gcloud.exceptions.Conflict: continue - # [END transaction_retry] + # [END transactional_retry] return account1.key, account2.key