From a09baa46629e4363486bcd2866a8aeccb693cd50 Mon Sep 17 00:00:00 2001 From: Bill Prin Date: Thu, 28 Apr 2016 15:35:22 -0700 Subject: [PATCH] Fix region tag --- appengine/xmpp/xmpp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appengine/xmpp/xmpp.py b/appengine/xmpp/xmpp.py index 91bdc8a7c6d1..11b20c551797 100644 --- a/appengine/xmpp/xmpp.py +++ b/appengine/xmpp/xmpp.py @@ -68,9 +68,9 @@ def post(self): # [END error] -# [START send-chat-to-user] class SendChatHandler(webapp2.RequestHandler): def post(self): + # [START send-chat-to-user] user_address = 'example@gmail.com' msg = ('Someone has sent you a gift on Example.com. ' 'To view: http://example.com/gifts/') @@ -81,7 +81,7 @@ def post(self): # Send an email message instead... # [END send-chat-to-user] pass -# [START send-chat-to-user] +# [END send-chat-to-user] # [START chat]