summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/samples/store-gae/shopping-cart.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/samples/store-gae/shopping-cart.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/sca-cpp/trunk/samples/store-gae/shopping-cart.py b/sca-cpp/trunk/samples/store-gae/shopping-cart.py
index 6501f3db8d..3c3168d77b 100644
--- a/sca-cpp/trunk/samples/store-gae/shopping-cart.py
+++ b/sca-cpp/trunk/samples/store-gae/shopping-cart.py
@@ -73,10 +73,10 @@ def total(cache, host, email):
return sum(cart)
# Return the email of the cart owner
-def getemail(cache, host, email):
- return email.eval()
+def email(cache, host, email_):
+ return email_.eval()
# Return the host that the app is running on
-def gethost(cache, host, email):
- return host.eval()
+def host(cache, host_, email):
+ return host_.eval()