8000 Resolved the inconsistency in response formats between the Python Ech… · microsoft/botbuilder-python@4b19483 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4b19483

Browse files
authored
Resolved the inconsistency in response formats between the Python Echo bot template and the C# and JavaScript Echo bot templates. (#2124)
1 parent 01449b5 commit 4b19483

File tree

1 file changed

+1
-1
lines changed
  • generators/app/templates/echo/{{cookiecutter.bot_name}}

1 file changed

+1
-1
lines changed

generators/app/templates/echo/{{cookiecutter.bot_name}}/bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class MyBot(ActivityHandler):
99
# See https://aka.ms/about-bot-activity-message to learn more about the message and other activity types.
1010

1111
async def on_message_activity(self, turn_context: TurnContext):
12-
await turn_context.send_activity(f"You said '{ turn_context.activity.text }'")
12+
await turn_context.send_activity(f"Echo: '{ turn_context.activity.text }'")
1313

1414
async def on_members_added_activity(
1515
self,

0 commit comments

Comments
 (0)
0